make comparison case insensitive

This commit is contained in:
Andy Miller
2014-11-05 16:22:00 -07:00
parent 9bb7d0c37b
commit 8cd962e0f3

View File

@@ -87,7 +87,7 @@ class Taxonomy
}
}
if ($operator == 'or') {
if (strtolower($operator) == 'or') {
foreach ($matches as $match) {
$results = array_merge($results, $match);
}