From 31387aa528f4857e57f9ca59bb1f30770133d575 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 13 Jan 2002 15:30:03 +0000 Subject: Add MOD user_level ... not terribly 'clean' with the permissions setup but allows simple implementation of 'global' mod needs git-svn-id: file:///svn/phpbb/trunk@1857 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/constants.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'phpBB/includes') diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index f9623091d3..a5c1f15773 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -28,8 +28,10 @@ define(DEBUG, 1); // Debugging on // User Levels <- Do not change the values of USER or ADMIN define(DELETED, -1); define(ANONYMOUS, -1); + define(USER, 0); define(ADMIN, 1); +define(MOD, 2); // User related -- cgit v1.2.1