diff options
| author | Graham Eames <grahamje@users.sourceforge.net> | 2006-09-23 12:27:51 +0000 |
|---|---|---|
| committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-09-23 12:27:51 +0000 |
| commit | cbece78f7b180253af95071ab859c468ed061ff5 (patch) | |
| tree | 420dcaac9aadf3144a4a65ced3f1bd25be10054e /phpBB/includes/constants.php | |
| parent | 36fa521f9230d2b2a8bbb6dc79185cfc17112f39 (diff) | |
| download | forums-cbece78f7b180253af95071ab859c468ed061ff5.tar forums-cbece78f7b180253af95071ab859c468ed061ff5.tar.gz forums-cbece78f7b180253af95071ab859c468ed061ff5.tar.bz2 forums-cbece78f7b180253af95071ab859c468ed061ff5.tar.xz forums-cbece78f7b180253af95071ab859c468ed061ff5.zip | |
A reworking of how we handle inactive users
git-svn-id: file:///svn/phpbb/trunk@6394 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/constants.php')
| -rw-r--r-- | phpBB/includes/constants.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index f20729e6c6..42d3c41463 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -30,6 +30,10 @@ define('USER_FOUNDER', 3); //define('USER_BOT', 2); //define('USER_GUEST', 4); +define('INACTIVE_REGISTER', 1); +define('INACTIVE_PROFILE', 2); +define('INACTIVE_MANUAL', 3); + // ACL define('ACL_NEVER', 0); define('ACL_YES', 1); |
