|
From: Paul S. O. <ps...@us...> - 2002-01-13 15:30:07
|
Update of /cvsroot/phpbb/phpBB2/includes In directory usw-pr-cvs1:/tmp/cvs-serv16153/includes Modified Files: constants.php Log Message: Add MOD user_level ... not terribly 'clean' with the permissions setup but allows simple implementation of 'global' mod needs Index: constants.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/includes/constants.php,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -r1.41 -r1.42 *** constants.php 2001/12/24 13:03:27 1.41 --- constants.php 2002/01/13 15:30:03 1.42 *************** *** 29,34 **** --- 29,36 ---- define(DELETED, -1); define(ANONYMOUS, -1); + define(USER, 0); define(ADMIN, 1); + define(MOD, 2); |