aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-03-22 15:48:46 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-03-22 15:48:46 +0000
commit8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63 (patch)
treed98ea4b4f1b3459d6de8a7fc6ac519835583665c /phpBB/common.php
parent73ffe96e2edac38ef785d4f5a9cfe24798fe2cbe (diff)
downloadforums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.tar
forums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.tar.gz
forums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.tar.bz2
forums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.tar.xz
forums-8357b81a1ec2d0fb6d383966e7883ed9bc8c0d63.zip
initial attachment functionality... only posting related (add/delete/edit) and schema. Also added attachment switch to board settings admin.
git-svn-id: file:///svn/phpbb/trunk@3697 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 401bbae2a7..295d8ef0a8 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -111,10 +111,14 @@ define('ACL_GROUPS_TABLE', $table_prefix.'auth_groups');
define('ACL_OPTIONS_TABLE', $table_prefix.'auth_options');
define('ACL_PRESETS_TABLE', $table_prefix.'auth_presets');
define('ACL_USERS_TABLE', $table_prefix.'auth_users');
+define('ATTACHMENTS_TABLE', $table_prefix.'attachments');
+define('ATTACHMENTS_DESC_TABLE', $table_prefix.'attach_desc');
define('BANLIST_TABLE', $table_prefix.'banlist');
define('CONFIG_TABLE', $table_prefix.'config');
define('CONFIRM_TABLE', $table_prefix.'confirm');
define('DISALLOW_TABLE', $table_prefix.'disallow'); //
+define('EXTENSIONS_TABLE', $table_prefix.'extensions');
+define('EXTENSION_GROUPS_TABLE', $table_prefix.'extension_groups');
define('FORUMS_TABLE', $table_prefix.'forums');
define('FORUMS_WATCH_TABLE', $table_prefix.'forums_watch');
define('GROUPS_TABLE', $table_prefix.'groups');