testing search function
This commit is contained in:
parent
c4c6c13d33
commit
c440ee493c
@ -110,8 +110,14 @@ class SearchPage extends Page {
|
||||
|
||||
foreach($items as $item) {
|
||||
foreach ($mustIncludeArray as $mustIncludeItem) {
|
||||
print('DEBUG $item: ');
|
||||
print_r($item);
|
||||
print('<br>');
|
||||
print('DEBUG $mustMustIncludeItem: ');
|
||||
print_r($mustIncludeItem);
|
||||
print('<br>');
|
||||
// $item->matches($mustIncludeItem)
|
||||
if(in_array($mustIncludeItem, $item,)) {
|
||||
if(in_array($mustIncludeItem, $item, True)) {
|
||||
$mustMatchCheck = True;
|
||||
print('DEBUG $mustMatchCheck: TRUE <br>');
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user