aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/constants.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-24 18:26:16 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-24 18:26:16 +0000
commitec99f3c97dac0b9b3b32ba5935cab5464de0442d (patch)
tree1c3890b175c7bd25b0d4af686748b586d6480828 /phpBB/includes/constants.php
parentbf5856936aeec457730a9b499bb32ad06016de32 (diff)
downloadforums-ec99f3c97dac0b9b3b32ba5935cab5464de0442d.tar
forums-ec99f3c97dac0b9b3b32ba5935cab5464de0442d.tar.gz
forums-ec99f3c97dac0b9b3b32ba5935cab5464de0442d.tar.bz2
forums-ec99f3c97dac0b9b3b32ba5935cab5464de0442d.tar.xz
forums-ec99f3c97dac0b9b3b32ba5935cab5464de0442d.zip
Forum locking now implemented + some updates for future functionality
git-svn-id: file:///svn/phpbb/trunk@748 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r--phpBB/includes/constants.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 983d27ad27..3496e944e4 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -36,6 +36,10 @@ define(ANONYMOUS, -1);
define(USER, 0);
define(ADMIN, 1);
+// Forum state
+define(FORUM_UNLOCKED, 0);
+define(FORUM_LOCKED, 1);
+
// Topic state
define(TOPIC_UNLOCKED, 0);
define(TOPIC_LOCKED, 1);
@@ -119,7 +123,6 @@ define(AUTH_LIST_ALL, 20);
// Table names
define('AUTH_ACCESS_TABLE', $table_prefix.'auth_access');
-define('AUTH_FORUMS_TABLE', $table_prefix.'auth_forums');
define('BANLIST_TABLE', $table_prefix.'banlist');
define('CATEGORIES_TABLE', $table_prefix.'categories');
define('CONFIG_TABLE', $table_prefix.'config');
@@ -133,6 +136,7 @@ define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text');
define('PRIVMSGS_IGNORE_TABLE', $table_prefix.'privmsgs_ignore');
define('RANKS_TABLE', $table_prefix.'ranks');
define('SESSIONS_TABLE', $table_prefix.'session');
+define('SMILIES_TABLE', $table_prefix.'smilies');
define('THEMES_TABLE', $table_prefix.'themes');
define('TOPICS_TABLE', $table_prefix.'topics');
define('USER_GROUP_TABLE', $table_prefix.'user_group');