Code Fix
-
Hi,
Lines 764-766 need a little fix to prevent errors.
Current Code:
if ($si_captcha_opt['login'] != 'true') { return true; // captcha setting is disabled for login }
Proposed Changes:
if ( empty( $si_captcha_opt['si_captcha_login'] ) || $si_captcha_opt['si_captcha_login'] != 'true') { return; // captcha setting is disabled for login }
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Code Fix’ is closed to new replies.