1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-27 21:45:22 +02:00

Preliminary avatar gallery support

git-svn-id: file:///svn/phpbb/trunk@1173 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-10-11 22:05:36 +00:00
parent e2c755710f
commit dd2033ace0
13 changed files with 741 additions and 411 deletions

View File

@ -36,11 +36,16 @@ define(USER, 0);
define(ADMIN, 1);
// User Activation
// 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);
// Forum state
define(FORUM_UNLOCKED, 0);