Per default no admin is registered
authorRoland Häder <roland@mxchange.org>
Wed, 7 Oct 2009 23:14:19 +0000 (23:14 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 7 Oct 2009 23:14:19 +0000 (23:14 +0000)
inc/config-functions.php

index db769c06e400bf795772b47c69c9b4e720b20702..a4af4d0be71cb681ca33f24fdf729b3237f34f85 100644 (file)
@@ -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',
        );
 }