mirror of
https://gitlab.com/mojo42/Jirafeau.git
synced 2025-01-17 12:58:20 +01:00
[BUGFIX] allow no ip user to connect and stay connected
This commit is contained in:
parent
7d1d6fe244
commit
486d4f5ea5
@ -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))) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user