From 655a057e903a4b6cf2489e2131f793d5d8870a37 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 28 Jul 2002 19:41:21 +0000 Subject: [PATCH] extra constant git-svn-id: file:///svn/phpbb/trunk@2776 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/common.php b/phpBB/common.php index 23a034f795..894055c15e 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -49,7 +49,7 @@ define('MOD', 2); define('USER_ACTIVATION_NONE', 0); define('USER_ACTIVATION_SELF', 1); define('USER_ACTIVATION_ADMIN', 2); -define('USER_ACTIVATION_CLOSED', 3); +define('USER_ACTIVATION_DISABLE', 3); define('USER_AVATAR_NONE', 0); define('USER_AVATAR_UPLOAD', 1); @@ -99,6 +99,7 @@ define('ACL_USERS_TABLE', $table_prefix.'auth_users'); define('BANLIST_TABLE', $table_prefix.'banlist'); define('CATEGORIES_TABLE', $table_prefix.'categories'); // define('CONFIG_TABLE', $table_prefix.'config'); +define('CONFIG_USER_TABLE', $table_prefix.'config_defaults'); define('DISALLOW_TABLE', $table_prefix.'disallow'); // define('FORUMS_TABLE', $table_prefix.'forums'); define('FORUMS_WATCH_TABLE', $table_prefix.'forums_watch');