|
From: Paul S. O. <ps...@us...> - 2001-10-11 22:05:38
|
Update of /cvsroot/phpbb/phpBB2/includes In directory usw-pr-cvs1:/tmp/cvs-serv8604/includes Modified Files: constants.php Log Message: Preliminary avatar gallery support Index: constants.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/includes/constants.php,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -r1.34 -r1.35 *** constants.php 2001/09/25 18:42:36 1.34 --- constants.php 2001/10/11 22:05:36 1.35 *************** *** 37,44 **** ! // User Activation define(USER_ACTIVATION_NONE, 0); define(USER_ACTIVATION_SELF, 1); define(USER_ACTIVATION_ADMIN, 2); --- 37,49 ---- ! // User related define(USER_ACTIVATION_NONE, 0); define(USER_ACTIVATION_SELF, 1); define(USER_ACTIVATION_ADMIN, 2); + + define(USER_AVATAR_NONE, 0); + define(USER_AVATAR_UPLOAD, 1); + define(USER_AVATAR_REMOTE, 2); + define(USER_AVATAR_GALLERY, 3); |