mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-12-23 03:19:00 +00:00
Merge pull request #35 from n9iels/patch-1
Fix bug that makes search impossible
This commit is contained in:
commit
566d60af0b
@ -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 . ')'
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user