Open ChristopheCaron opened 6 years ago
Hello I have one error returned if the suggestion array is empty here:
if ($filter = $this->getFilterMatch($suggestion)) {
I solve the problem like this
if ( count($suggestion) != 0 && $filter = $this->getFilterMatch($suggestion)) {
Thanks for this module !
Hello I have one error returned if the suggestion array is empty here:
I solve the problem like this
Thanks for this module !