1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Removed <label> from rememberme in signin shortcodes.

This commit is contained in:
Cameron
2021-01-02 12:31:08 -08:00
parent 8d0af7cf46
commit c3c830d296
2 changed files with 2 additions and 2 deletions

View File

@@ -168,7 +168,7 @@ class plugin_signin_signin_shortcodes extends e_shortcode
}
if ($pref['user_tracking'] !== "session")
{
return "<label for='autologin'><input type='checkbox' name='autologin' id='autologin' value='1' checked='checked' />" . ($parm ? $parm : "" . LAN_LOGINMENU_6 . "</label>");
return "<input type='checkbox' name='autologin' id='autologin' value='1' checked='checked' />" . ($parm ? $parm : "" . LAN_LOGINMENU_6 );
}
return null;