31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-10 09:12:22 +00:00

Merge pull request #35 from n9iels/patch-1

Fix bug that makes search impossible
This commit is contained in:
Michael Babker 2014-09-13 05:19:32 -04:00
commit 566d60af0b

View File

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