diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2003-04-23 20:50:07 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2003-04-23 20:50:07 +0000 |
| commit | 444b49c50af2ada82e6dc995f70c9f8e107ae2a5 (patch) | |
| tree | 161bedef792c0e02750c0de8af2f0babb4c612ea /phpBB/common.php | |
| parent | bec93ceb595a3b73613942dbeeefc311da92d597 (diff) | |
| download | forums-444b49c50af2ada82e6dc995f70c9f8e107ae2a5.tar forums-444b49c50af2ada82e6dc995f70c9f8e107ae2a5.tar.gz forums-444b49c50af2ada82e6dc995f70c9f8e107ae2a5.tar.bz2 forums-444b49c50af2ada82e6dc995f70c9f8e107ae2a5.tar.xz forums-444b49c50af2ada82e6dc995f70c9f8e107ae2a5.zip | |
replaced \' with ' in template to let it parse javascript correctly. admin_attachments.php changes. added real media streaming.
git-svn-id: file:///svn/phpbb/trunk@3932 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
| -rw-r--r-- | phpBB/common.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index 413968087a..5e5a5378c0 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -112,9 +112,11 @@ define('PHYSICAL_LINK', 2); // Categories - Attachments define('NONE_CAT', 0); -define('IMAGE_CAT', 1); -define('STREAM_CAT', 2); -//define('SWF_CAT', 3); +define('IMAGE_CAT', 1); // Inline Images +define('WM_CAT', 2); // Windows Media Files - Streaming +define('RM_CAT', 3); // Real Media Files - Streaming +define('THUMB_CAT', 4); // Not used within the database, only while displaying posts +//define('SWF_CAT', 5); // Replaced by [flash] ? or an additional possibility ? // BBCode UID length define('BBCODE_UID_LEN', 5); |
