aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/constants.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-03 22:50:56 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-03 22:50:56 +0000
commitbed1d3ab9adadeea484384b38849ec568ef5d4ed (patch)
tree5d171f119a1df14122015fd7861204e881c4692c /phpBB/includes/constants.php
parent356f845abc4ed17322c7afc904ba4a67718327d2 (diff)
downloadforums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.tar
forums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.tar.gz
forums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.tar.bz2
forums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.tar.xz
forums-bed1d3ab9adadeea484384b38849ec568ef5d4ed.zip
Updates related to message.php and transaction update
git-svn-id: file:///svn/phpbb/trunk@547 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r--phpBB/includes/constants.php26
1 files changed, 14 insertions, 12 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 8f4ba92153..cc93c5f4b6 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -37,8 +37,8 @@ define(USER, 0);
define(ADMIN, 1);
// Topic state
-define(UNLOCKED, 0);
-define(LOCKED, 1);
+define(TOPIC_UNLOCKED, 0);
+define(TOPIC_LOCKED, 1);
// Topic types
define(POST_NORMAL, 0);
@@ -46,22 +46,22 @@ define(POST_STICKY, 1);
define(POST_ANNOUNCE, 2);
define(POST_GLOBAL_ANNOUNCE, 3);
-// Ban time types
-define(SECONDS, 1);
-define(MINUTES, 2);
-define(HOURS, 3);
-define(DAYS, 4);
-define(YEARS, 5);
+// SQL codes
+define(BEGIN_TRANSACTION, 1);
+define(END_TRANSACTION, 2);
// Error codes
+define(GENERAL_MESSAGE, 200);
+define(GENERAL_ERROR, 202);
+define(CRITICAL_MESSAGE, 203);
+define(CRITICAL_ERROR, 204);
+
define(SQL_CONNECT, 1);
define(BANNED, 2);
define(QUERY_ERROR, 3);
define(SESSION_CREATE, 4);
define(NO_TOPICS, 5);
-define(GENERAL_ERROR, 6);
define(LOGIN_FAILED, 7);
-define(GENERAL_MESSAGE, 10);
// Private messaging
define(PRIVMSGS_READ_MAIL, 0);
@@ -128,7 +128,8 @@ define('GROUPS_TABLE', $table_prefix.'groups');
define('POSTS_TABLE', $table_prefix.'posts');
define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');
define('PRIVMSGS_TABLE', $table_prefix.'privmsgs');
-define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text');
+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('THEMES_TABLE', $table_prefix.'themes');
@@ -137,4 +138,5 @@ define('USER_GROUP_TABLE', $table_prefix.'user_group');
define('USERS_TABLE', $table_prefix.'users');
define('WORDS_TABLE', $table_prefix.'words');
define('PRUNE_TABLE', $table_prefix.'forum_prune');
-?>
+
+?> \ No newline at end of file