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

Make search case insensitive (Fix #22)

This commit is contained in:
Michael Babker 2014-03-29 11:51:29 -05:00
parent c1b0b499cc
commit f317ddbabf

View File

@ -235,7 +235,7 @@ class PatchtesterModelPulls extends JModelList
foreach ($pulls as $i => &$pull)
{
if ($search && false === strpos($pull->title, $search))
if ($search && false === stripos($pull->title, $search))
{
unset($pulls[$i]);
continue;