MyISAM (bool)
-
Issue:
After converting thenswp_poststable to use theMyISAMengine, I still can’t enable “consider titles” and “consider body” because it says “your table seems to be using the1engine. I saw a few other topics that seem to have the same issue or be related, but there seems to be a pretty easy fix.Possible Solution:
Looks like there are a few places in the code that aren’t casting$table_typeto a Boolean before strictly checking it againsttrue. (ie – YARRP_Core.php line 321)Pretty sure if you do a find (in the plugin code) for…
($table_type !== true)
…and change to…
((bool) $table_type !== true)
…it should work as expected.Last:
Is this plugin maintained anymore? It’d be good to know if it is safe to edit the plugin code directly if there aren’t any more updates coming.Thanks!
The topic ‘MyISAM (bool)’ is closed to new replies.