From fabec7329789dacbe264d95ba623831515d68009 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Wed, 7 Oct 2009 23:14:19 +0000 Subject: [PATCH] Per default no admin is registered --- inc/config-functions.php | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/inc/config-functions.php b/inc/config-functions.php index db769c06e4..a4af4d0be7 100644 --- a/inc/config-functions.php +++ b/inc/config-functions.php @@ -52,17 +52,18 @@ function initConfig () { // Set a minimum dummy configuration $GLOBALS['config'] = array( - 'code_length' => 0, - 'patch_level' => 0, - 'last_update' => time(), - 'DEBUG_MODE' => 'N', - 'DEBUG_RESET' => 'N', - 'DEBUG_MONTHLY' => 'N', - 'DEBUG_WEEKLY' => 'N', - 'DEBUG_REGEX' => 'N', - 'sql_count' => 0, - 'num_templates' => 0, - 'default_theme' => 'default', + 'code_length' => 0, + 'patch_level' => 0, + 'last_update' => time(), + 'DEBUG_MODE' => 'N', + 'DEBUG_RESET' => 'N', + 'DEBUG_MONTHLY' => 'N', + 'DEBUG_WEEKLY' => 'N', + 'DEBUG_REGEX' => 'N', + 'ADMIN_REGISTERED' => 'N', + 'sql_count' => 0, + 'num_templates' => 0, + 'default_theme' => 'default', ); } -- 2.30.2