SQL error on banned word removal
-
If you add any word into the banned words list, then there is a SQL syntax error when the query is being built. For example you put the word “the” into the list of forbidden words. Then you write into the search something like this: “get the book”. The word “the” is being removed from there, but the query will be:
SELECT DISTINCT (MATCH(wp_posts.post_title) AGAINST ('get+ +book' IN BOOLEAN MODE ) ...
As you can see, there is an error because there are two + symbols and no word between them.
I hope that it can be solved into next release soon.
Kind regards,
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘SQL error on banned word removal’ is closed to new replies.