From 8cd962e0f372dabe4423c6bf7e924d5adb7932a1 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Wed, 5 Nov 2014 16:22:00 -0700 Subject: [PATCH] make comparison case insensitive --- system/src/Grav/Common/Taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Taxonomy.php b/system/src/Grav/Common/Taxonomy.php index 2e0f471b2..6ea5a3591 100644 --- a/system/src/Grav/Common/Taxonomy.php +++ b/system/src/Grav/Common/Taxonomy.php @@ -87,7 +87,7 @@ class Taxonomy } } - if ($operator == 'or') { + if (strtolower($operator) == 'or') { foreach ($matches as $match) { $results = array_merge($results, $match); }