X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/2008a343c9d4bfa2c949ec3870875630eea5fb5c..b313695abdb9dcdc18b4e618da45d37c354270c2:/admin.php diff --git a/admin.php b/admin.php index ed9baad..ea3e084 100644 --- a/admin.php +++ b/admin.php @@ -2,6 +2,7 @@ /* * Jirafeau, your web file repository * Copyright (C) 2015 Jerome Jutteau + * Copyright (C) 2023 Blackeye * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -64,7 +65,8 @@ if (php_sapi_name() == "cli") { if (!jirafeau_admin_session_logged()) { /* Test HTTP authentication. */ if (!empty($cfg['admin_http_auth_user']) && - $cfg['admin_http_auth_user'] == $_SERVER['PHP_AUTH_USER']) { + ((is_array($cfg['admin_http_auth_user']) && in_array($_SERVER['PHP_AUTH_USER'], $cfg['admin_http_auth_user'])) || + (($cfg['admin_http_auth_user'] == $_SERVER['PHP_AUTH_USER'])))) { jirafeau_admin_session_start(); } /* Test web password authentication. */ @@ -120,6 +122,10 @@ if (php_sapi_name() == "cli") { require(JIRAFEAU_ROOT . 'lib/template/header.php'); ?>

(version )

'.t('SODIUM_UNAVAILABLE').'

'; + } + ?>