X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/2008a343c9d4bfa2c949ec3870875630eea5fb5c..9c3b702ab8f82079ddaa9a12413802de946d8ecc:/admin.php diff --git a/admin.php b/admin.php index ed9baad..a6bacd3 100644 --- a/admin.php +++ b/admin.php @@ -1,7 +1,9 @@ <?php /* * Jirafeau, your web file repository + * Copyright (C) 2008 Julien "axolotl" BERNARD <axolotl@magieeternelle.org> * Copyright (C) 2015 Jerome Jutteau <jerome@jutteau.fr> + * Copyright (C) 2024 Jirafeau project <https://gitlab.com/jirafeau> (see AUTHORS.md) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -14,7 +16,7 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <https://www.gnu.org/licenses/>. */ session_start(); define('JIRAFEAU_ROOT', dirname(__FILE__) . '/'); @@ -64,7 +66,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 +123,10 @@ if (php_sapi_name() == "cli") { require(JIRAFEAU_ROOT . 'lib/template/header.php'); ?><h2><?php echo t('ADMIN_INTERFACE'); ?></h2><?php ?><h2>(version <?php echo JIRAFEAU_VERSION ?>)</h2><?php + if ($cfg['enable_crypt'] && !(extension_loaded('sodium'))) { + echo '<div class="error"><p>'.t('SODIUM_UNAVAILABLE').'</p></div>'; + } + ?><div id = "admin"> <fieldset><legend><?php echo t('ACTIONS'); ?></legend> <table>