diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-11 00:10:54 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-11 00:10:54 +0000 |
commit | d2b4b4dc515deec822f22e69f47763d8e11a31a4 (patch) | |
tree | fbbf4519e83ef8768354d84ec7b1429a3df77ccf /phpBB/includes | |
parent | 23f0178fd126b16f1431221220e8f271fe9b42f5 (diff) | |
download | forums-d2b4b4dc515deec822f22e69f47763d8e11a31a4.tar forums-d2b4b4dc515deec822f22e69f47763d8e11a31a4.tar.gz forums-d2b4b4dc515deec822f22e69f47763d8e11a31a4.tar.bz2 forums-d2b4b4dc515deec822f22e69f47763d8e11a31a4.tar.xz forums-d2b4b4dc515deec822f22e69f47763d8e11a31a4.zip |
Some privmsg updates
git-svn-id: file:///svn/phpbb/trunk@453 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/constants.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 5dbe9960f7..265d4794b6 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -63,6 +63,11 @@ define(NO_TOPICS, 5); define(GENERAL_ERROR, 6); define(LOGIN_FAILED, 7); +// Private messaging +define(PRIVMSGS_READ_MAIL, 0); +define(PRIVMSGS_NEW_MAIL, 1); +define(PRIVMSGS_SENT_MAIL, 2); + // URL PARAMETERS define(POST_TOPIC_URL, 't'); define(POST_FORUM_URL, 'f'); @@ -84,6 +89,7 @@ define(PAGE_VIEWONLINE, -6); define(PAGE_VIEWMEMBERS, -7); define(PAGE_FAQ, -8); define(PAGE_POSTING, -9); +define(PAGE_PRIVMSGS, -10); // Auth settings define(AUTH_ALL, 0); @@ -120,7 +126,8 @@ define('FORUMS_TABLE', $table_prefix.'forums'); define('GROUPS_TABLE', $table_prefix.'groups'); define('POSTS_TABLE', $table_prefix.'posts'); define('POSTS_TEXT_TABLE', $table_prefix.'posts_text'); -define('PRIV_MSGS_TABLE', $table_prefix.'priv_msgs'); +define('PRIVMSGS_TABLE', $table_prefix.'privmsgs'); +define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text'); define('RANKS_TABLE', $table_prefix.'ranks'); define('SESSIONS_TABLE', $table_prefix.'session'); define('THEMES_TABLE', $table_prefix.'themes'); |