Bug causing WordPress DB error
-
Hi there,
I noticed a bug in this plugin after finding these errors in my error_log file:[29-Dec-2015 18:25:53 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ” at line 1 for query SELECT ip FROM wp_simple_security_access_log WHERE login_result = 0 and time LIKE ‘2015-12-29%’ GROUP BY ip HAVING COUNT(ip) >= made by require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘init’), call_user_func_array, Simple_Security_Tools->security_check
The problem is related to an unitialized
$this->opt_name
in methodsecurity_check()
in filesimple-security-tools.php
.This can be easily fixed by initializing that variable in the constructor, i.e.:
$this->opt_name = 'simple-security-settings';
I hope that you can fix this in next releases.
Cheers.
- The topic ‘Bug causing WordPress DB error’ is closed to new replies.