diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-07-28 19:41:21 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-07-28 19:41:21 +0000 |
commit | 655a057e903a4b6cf2489e2131f793d5d8870a37 (patch) | |
tree | fd6ae7a29118bb6661d2e3255eb537003f46e700 /phpBB | |
parent | b61163b76bed16826d486509fb1906da8307fdfc (diff) | |
download | forums-655a057e903a4b6cf2489e2131f793d5d8870a37.tar forums-655a057e903a4b6cf2489e2131f793d5d8870a37.tar.gz forums-655a057e903a4b6cf2489e2131f793d5d8870a37.tar.bz2 forums-655a057e903a4b6cf2489e2131f793d5d8870a37.tar.xz forums-655a057e903a4b6cf2489e2131f793d5d8870a37.zip |
extra constant
git-svn-id: file:///svn/phpbb/trunk@2776 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/common.php | 3 |
1 files changed, 2 insertions, 1 deletions
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'); |