Undefined index: loginFacebook
-
Please, in the next versions of the plugin, could you change the following:
function new_fb_login() { if ($_REQUEST['loginFacebook'] == '1') { new_fb_login_action(); } }
with:
function new_fb_login() { if ( isset($_REQUEST['loginFacebook']) && $_REQUEST['loginFacebook'] == '1') { new_fb_login_action(); } }
(line 116)
Thanks a lot
Carlo
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Undefined index: loginFacebook’ is closed to new replies.