From 75eef6bfd7bbfdbb5a359e42015509197ad9d4ce Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Fri, 11 Apr 2003 19:51:38 +0000 Subject: changed $message to be a class variable, added attachment category constants (now images are displayed inlined by default... no wrong assignments anymore, if you wondered why your zip file got streamed. ;)) git-svn-id: file:///svn/phpbb/trunk@3816 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'phpBB/common.php') diff --git a/phpBB/common.php b/phpBB/common.php index b36cb24279..f160838600 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -106,6 +106,16 @@ define('PRIVMSGS_READ_MAIL', 0); define('PRIVMSGS_NEW_MAIL', 1); define('PRIVMSGS_UNREAD_MAIL', 5); +// Download Modes - Attachments +define('INLINE_LINK', 1); +define('PHYSICAL_LINK', 2); + +// Categories - Attachments +define('NONE_CAT', 0); +define('IMAGE_CAT', 1); +define('STREAM_CAT', 2); +//define('SWF_CAT', 3); + // BBCode UID length define('BBCODE_UID_LEN', 5); -- cgit v1.2.1