X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/5bd3412d378c6de75c36737b5fd93eb214945469..HEAD:/admin.php?ds=sidebyside diff --git a/admin.php b/admin.php index 79918be..09bded5 100644 --- a/admin.php +++ b/admin.php @@ -64,7 +64,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 +121,10 @@ if (php_sapi_name() == "cli") { require(JIRAFEAU_ROOT . 'lib/template/header.php'); ?>

(version )

'.t('SODIUM_UNAVAILABLE').'

'; + } + ?>
@@ -303,6 +308,7 @@ if (php_sapi_name() == "cli") { require(JIRAFEAU_ROOT.'lib/template/footer.php'); } else { + require(JIRAFEAU_ROOT . 'lib/template/header.php'); jirafeau_fatal_error(t('ACCESS_KO'), $cfg); } ?>