mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2025-04-03 10:08:55 -04:00
fix double check issue with login function
This commit is contained in:
parent
8845ad65f0
commit
8731add072
@ -210,12 +210,12 @@ class User
|
||||
public static function login()
|
||||
{
|
||||
global $message, $mysqli;
|
||||
if (!isset($_POST['email']) && !isset($_POST['email']))
|
||||
if (!isset($_POST['email']) && !isset($_POST['pass']))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ((!isset($_POST['email']) || !isset($_POST['email'])))
|
||||
if ((!isset($_POST['email']) || !isset($_POST['pass'])))
|
||||
{
|
||||
$message = _("Please fill in your email and password!");
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user