Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.4.2
-
Fix Version/s: None
-
Component/s: Search Admin Module
-
Security Level: anyone
Description
The line 32 in SortController is wrong, because the syntax of MySQL MATCH() AGAINST() dows not use the "%" symbol, but "*".
$query = str_replace("%", "*", $query);
But this replaces the % with * because many users use the % instead of the * that's why we offer both methods.
Or did I get something wrong?