You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this combines 2 searchwords first and then tries to explode with ",", does not work, search for "Internet Data" creates a new Searchword "InternetData"...
in PostRepository, function search:
this combines 2 searchwords first and then tries to explode with ",", does not work, search for "Internet Data" creates a new Searchword "InternetData"...
$parseKey = explode(',', str_replace(' ', '', $keyword));
I changed to:
$parseKey = explode(',', str_replace(' ', ',', trim($keyword)));
$parseKey = array_filter($parseKey);
The text was updated successfully, but these errors were encountered: