From 2c470e4b27f4e5df4c996d6755ebbb1f7306d86a Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Mon, 31 May 2004 18:00:10 +0000 Subject: - added delete cookies link - fixed global announcement links in viewforum - do not display redirects in link forums as posts in forum overview git-svn-id: file:///svn/phpbb/trunk@4904 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'phpBB/common.php') diff --git a/phpBB/common.php b/phpBB/common.php index 59a3d81b79..52638d2073 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -128,6 +128,11 @@ define('PRIVMSGS_OUTBOX', -2); define('PRIVMSGS_SENTBOX', -1); define('PRIVMSGS_INBOX', 0); +// Full Folder Actions +define('FULL_FOLDER_NONE', -3); +define('FULL_FOLDER_DELETE', -2); +define('FULL_FOLDER_HOLD', -1); + // Download Modes - Attachments define('INLINE_LINK', 1); define('PHYSICAL_LINK', 2); @@ -167,7 +172,10 @@ 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('PROFILE_FIELDS_TABLE', $table_prefix.'profile_fields'); +define('PROFILE_LANG_TABLE', $table_prefix.'profile_lang'); +define('PROFILE_DATA_TABLE', $table_prefix.'profile_fields_data'); +define('PROFILE_FIELDS_LANG_TABLE', $table_prefix.'profile_fields_lang'); define('DISALLOW_TABLE', $table_prefix.'disallow'); // define('DRAFTS_TABLE', $table_prefix.'drafts'); define('EXTENSIONS_TABLE', $table_prefix.'extensions'); -- cgit v1.2.1