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") 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; return null;

View File

@@ -92,4 +92,4 @@ table.table { width: 100% }
.mt-0 { margin-top: 0 } .mt-0 { margin-top: 0 }
.mb-0 { margin-bottom: 0 } .mb-0 { margin-bottom: 0 }
.mt-3 { margin-top: 1rem !important; } .mt-3 { margin-top: 1rem !important; }
.d-flex { display: flex !important; } .d-flex { display: flex !important; }