Skip to content

Commit

Permalink
Merge pull request #35 from n9iels/patch-1
Browse files Browse the repository at this point in the history
Fix bug that makes search impossible
  • Loading branch information
mbabker committed Sep 13, 2014
2 parents 713e7d0 + c228b59 commit 566d60a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion administrator/components/com_patchtester/models/pulls.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ protected function getListQuery()
$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 . ')'
);
}

Expand Down

0 comments on commit 566d60a

Please sign in to comment.