From ec99f3c97dac0b9b3b32ba5935cab5464de0442d Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 24 Jul 2001 18:26:16 +0000 Subject: [PATCH] Forum locking now implemented + some updates for future functionality git-svn-id: file:///svn/phpbb/trunk@748 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/constants.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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');