aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/constants.php15
1 files changed, 6 insertions, 9 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 2c664542d9..8af243322d 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -47,6 +47,12 @@ define(USER_AVATAR_REMOTE, 2);
define(USER_AVATAR_GALLERY, 3);
+// Group settings
+define(GROUP_OPEN, 0);
+define(GROUP_CLOSED, 1);
+define(GROUP_HIDDEN, 2);
+
+
// Forum state
define(FORUM_UNLOCKED, 0);
define(FORUM_LOCKED, 1);
@@ -78,13 +84,6 @@ 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(LOGIN_FAILED, 7);
-
// Private messaging
define(PRIVMSGS_READ_MAIL, 0);
@@ -133,13 +132,11 @@ define(AUTH_MOD, 3);
define(AUTH_ADMIN, 5);
define(AUTH_VIEW, 1);
-
define(AUTH_READ, 2);
define(AUTH_POST, 3);
define(AUTH_REPLY, 4);
define(AUTH_EDIT, 5);
define(AUTH_DELETE, 6);
-
define(AUTH_ANNOUNCE, 7);
define(AUTH_STICKY, 8);
define(AUTH_POLLCREATE, 9);