From 486d4f5ea5be5649cdbc478a9a9948af37e73366 Mon Sep 17 00:00:00 2001 From: sebastien Date: Tue, 15 Oct 2019 16:10:44 +0200 Subject: [PATCH] [BUGFIX] allow no ip user to connect and stay connected --- index.php | 3 +++ 1 file changed, 3 insertions(+) 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))) { -- 2.34.1