[BUGFIX] allow no ip user to connect and stay connected

This commit is contained in:
sebastien 2019-10-15 16:10:44 +02:00 committed by Jerome Jutteau
parent 7d1d6fe244
commit 486d4f5ea5

View File

@ -37,6 +37,9 @@ require(JIRAFEAU_ROOT . 'lib/template/header.php');
/* Check if user is allowed to upload. */ /* Check if user is allowed to upload. */
// First check: Challenge by IP NO PASSWORD // First check: Challenge by IP NO PASSWORD
if (true === jirafeau_challenge_upload_ip($cfg['upload_ip_nopassword'], get_ip_address($cfg))) { if (true === jirafeau_challenge_upload_ip($cfg['upload_ip_nopassword'], get_ip_address($cfg))) {
$_SESSION['upload_auth'] = true;
$_POST['upload_password'] = '';
$_SESSION['user_upload_password'] = $_POST['upload_password'];
} }
// Second check: Challenge by IP // Second check: Challenge by IP
elseif (true === jirafeau_challenge_upload_ip($cfg['upload_ip'], get_ip_address($cfg))) { elseif (true === jirafeau_challenge_upload_ip($cfg['upload_ip'], get_ip_address($cfg))) {