diff --git a/include/SearchPage.php b/include/SearchPage.php
index f7761c9..3e25fc3 100644
--- a/include/SearchPage.php
+++ b/include/SearchPage.php
@@ -102,25 +102,25 @@ class SearchPage extends Page {
         $items = get_items($type);
         $sanitizedItems = array();
         foreach($items as $item) {
-            $mustMatch = $item->matches($mustMatchArray);
-            if($mustMatch) {
-                $sanitizedItems[] = array($item, $mustMatch);
-            }
-
-            // $mustMatchCheck = array();
-            // foreach($mustMatchArray as $mustMatchTerm) {
-
-            //     $matchingResult = $item->matches($mustMatchTerm);
-            //     if ($matchingResult) {
-            //         $mustMatchCheck[] = True;
-            //     } else {
-            //         $mustMatchCheck[] = False;
-            //     }
-            // }
-            // if(in_array(False, $mustMatchCheck, True) === False) {
+            // $mustMatch = $item->matches($mustMatchArray);
+            // if($mustMatch) {
             //     $sanitizedItems[] = array($item, $mustMatch);
             // }
 
+            $mustMatchCheck = array();
+            foreach($mustMatchArray as $mustMatchTerm) {
+
+                $matchingResult = $item->matches($mustMatchTerm);
+                if ($matchingResult) {
+                    $mustMatchCheck[] = True;
+                } else {
+                    $mustMatchCheck[] = False;
+                }
+            }
+            if(in_array(False, $mustMatchCheck, True) === False) {
+                $sanitizedItems[] = array($item, $mustMatch);
+            }
+
             
 
             // $mustExcludeCheck = array();