testing search function

This commit is contained in:
Viktor Pedersen 2021-08-13 11:10:02 +02:00
parent 0083976c14
commit ddd57a856e

@ -110,7 +110,8 @@ class SearchPage extends Page {
foreach($items as $item) {
foreach ($mustIncludeArray as $mustIncludeItem) {
if($item->matches($mustIncludeArray)) {
// $item->matches($mustIncludeItem)
if(in_array($mustIncludeItem, $item, $strict = True)) {
$mustMatchCheck = True;
print('DEBUG $mustMatchCheck: TRUE <br>');
} else {