diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2004-05-31 18:00:10 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-05-31 18:00:10 +0000 |
| commit | 2c470e4b27f4e5df4c996d6755ebbb1f7306d86a (patch) | |
| tree | 3a8748f72fcba6da3ba2bc9e0fbc047c71deadd7 /phpBB/common.php | |
| parent | 6aa42b69abe798388aad4f7e6bf943dfb608e896 (diff) | |
| download | forums-2c470e4b27f4e5df4c996d6755ebbb1f7306d86a.tar forums-2c470e4b27f4e5df4c996d6755ebbb1f7306d86a.tar.gz forums-2c470e4b27f4e5df4c996d6755ebbb1f7306d86a.tar.bz2 forums-2c470e4b27f4e5df4c996d6755ebbb1f7306d86a.tar.xz forums-2c470e4b27f4e5df4c996d6755ebbb1f7306d86a.zip | |
- 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
Diffstat (limited to 'phpBB/common.php')
| -rw-r--r-- | phpBB/common.php | 10 |
1 files changed, 9 insertions, 1 deletions
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'); |
