33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-12-23 03:19:00 +00:00

Fix bug that makes search impossible

This commit is contained in:
Niels van der Veer 2014-09-13 08:52:31 +02:00
parent 713e7d0df8
commit c228b5942c

View File

@ -125,7 +125,7 @@ class PatchtesterModelPulls extends JModelList
$search = $db->quote('%' . $db->escape($search, true) . '%'); $search = $db->quote('%' . $db->escape($search, true) . '%');
$query->where( $query->where(
'(' . $db->quoteName('a.title') . ' LIKE ' . $search . ') OR ' . '(' . $db->quoteName('a.title') . ' LIKE ' . $search . ') OR ' .
'(' . $db->quoteName('a.pull_id') . ' LIKE ' . $search . ') OR ' '(' . $db->quoteName('a.pull_id') . ' LIKE ' . $search . ')'
); );
} }