X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/2008a343c9d4bfa2c949ec3870875630eea5fb5c..852f1941bf2fab3e0f524bc44b0e285ebfc33311:/admin.php diff --git a/admin.php b/admin.php index ed9baad..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'); ?>
'.t('SODIUM_UNAVAILABLE').'
'; + } + ?>