From: sebastien Date: Tue, 15 Oct 2019 14:10:44 +0000 (+0200) Subject: [BUGFIX] allow no ip user to connect and stay connected X-Git-Tag: 4.0.0~12 X-Git-Url: https://git.p6c8.net/jirafeau_project.git/commitdiff_plain/486d4f5ea5be5649cdbc478a9a9948af37e73366?hp=7d1d6fe244514c94f44ce436c4ddbf3e94635b9e [BUGFIX] allow no ip user to connect and stay connected --- diff --git a/index.php b/index.php index c9f6cab..6c0a03a 100644 --- a/index.php +++ b/index.php @@ -37,6 +37,9 @@ require(JIRAFEAU_ROOT . 'lib/template/header.php'); /* Check if user is allowed to upload. */ // First check: Challenge by IP NO PASSWORD 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 elseif (true === jirafeau_challenge_upload_ip($cfg['upload_ip'], get_ip_address($cfg))) {