aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-08-14 00:40:21 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-08-14 00:40:21 +0000
commit22471c9e1e3336cef3866674baf9540ccb8156d6 (patch)
tree0be1673217537b4c90c21dcab8753f2eea145c70 /phpBB
parenta23e75b498c5ae12b23afa854b517051399e6f40 (diff)
downloadforums-22471c9e1e3336cef3866674baf9540ccb8156d6.tar
forums-22471c9e1e3336cef3866674baf9540ccb8156d6.tar.gz
forums-22471c9e1e3336cef3866674baf9540ccb8156d6.tar.bz2
forums-22471c9e1e3336cef3866674baf9540ccb8156d6.tar.xz
forums-22471c9e1e3336cef3866674baf9540ccb8156d6.zip
Topic notification ... initial stuff
git-svn-id: file:///svn/phpbb/trunk@864 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/constants.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 767393d746..926eb79624 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -43,6 +43,8 @@ define(FORUM_LOCKED, 1);
// Topic state
define(TOPIC_UNLOCKED, 0);
define(TOPIC_LOCKED, 1);
+define(TOPIC_WATCH_NOTIFIED, 1);
+define(TOPIC_WATCH_UN_NOTIFIED, 0);
// Topic types
define(POST_NORMAL, 0);
@@ -97,6 +99,7 @@ define(PAGE_FAQ, -8);
define(PAGE_POSTING, -9);
define(PAGE_PRIVMSGS, -10);
define(PAGE_GROUPCP, -11);
+define(PAGE_TOPIC_OFFSET, 5000);
// Auth settings
define(AUTH_ALL, 0);
@@ -140,6 +143,7 @@ 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('TOPICS_WATCH_TABLE', $table_prefix.'topics_watch');
define('USER_GROUP_TABLE', $table_prefix.'user_group');
define('USERS_TABLE', $table_prefix.'users');
define('WORDS_TABLE', $table_prefix.'words');