From 2ffda20b0e88884e330f33123482b1a6eb0aad58 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 8 Feb 2004 15:18:17 +0000 Subject: [PATCH] Custom profile data table define git-svn-id: file:///svn/phpbb/trunk@4814 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/common.php b/phpBB/common.php index 29c10a5917..4fd057420a 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -71,7 +71,6 @@ define('USER_ACTIVATION_NONE', 0); define('USER_ACTIVATION_SELF', 1); define('USER_ACTIVATION_ADMIN', 2); define('USER_ACTIVATION_DISABLE', 3); -define('USER_ACTIVATION_SELF_ADMIN', 4); define('AVATAR_UPLOAD', 1); define('AVATAR_REMOTE', 2); @@ -167,6 +166,7 @@ define('BOTS_TABLE', $table_prefix.'bots'); define('CACHE_TABLE', $table_prefix.'cache'); define('CONFIG_TABLE', $table_prefix.'config'); define('CONFIRM_TABLE', $table_prefix.'confirm'); +define('CUSTOM_PROFILE_DATA', $table_prefix.'profile_fields_data'); define('DISALLOW_TABLE', $table_prefix.'disallow'); // define('DRAFTS_TABLE', $table_prefix.'drafts'); define('EXTENSIONS_TABLE', $table_prefix.'extensions');