Fixed module search in oracle (now it is true)

This commit is contained in:
Arturo Gonzalez Diaz 2015-10-19 15:32:39 +02:00
parent 102375d377
commit 98c8b30b52
1 changed files with 2 additions and 2 deletions

View File

@ -175,8 +175,8 @@ if ($searchModules) {
)
)
) AND
(t1.nombre LIKE \'%' . strtolower($stringSearchSQL) . '%\' OR
t3.nombre LIKE \'%' . strtolower($stringSearchSQL) . '%\')';
(LOWER(t1.nombre) LIKE \'%' . strtolower($stringSearchSQL) . '%\' OR
LOWER(t3.nombre) LIKE \'%' . strtolower($stringSearchSQL) . '%\')';
break;
}