Fixed module search in oracle (now it is true)
This commit is contained in:
parent
102375d377
commit
98c8b30b52
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue