diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-07 18:17:53 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-07 18:17:53 -0600 |
commit | 473a26a553c7b3e785634d23fe3de50e78aacf57 (patch) | |
tree | 9a8c5eaae823a8f033545d483aab18a0ea1d3873 /phpBB/includes/constants.php | |
parent | 92ec214537d041076187cc013d08175e8cff3fe8 (diff) | |
download | forums-473a26a553c7b3e785634d23fe3de50e78aacf57.tar forums-473a26a553c7b3e785634d23fe3de50e78aacf57.tar.gz forums-473a26a553c7b3e785634d23fe3de50e78aacf57.tar.bz2 forums-473a26a553c7b3e785634d23fe3de50e78aacf57.tar.xz forums-473a26a553c7b3e785634d23fe3de50e78aacf57.zip |
[ticket/8323] Comments for inactive reasons in constants.php
Copied from language output
PHPBB3-8323
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r-- | phpBB/includes/constants.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 68af41ab20..78c4051708 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -46,10 +46,10 @@ define('USER_INACTIVE', 1); define('USER_IGNORE', 2); define('USER_FOUNDER', 3); -define('INACTIVE_REGISTER', 1); -define('INACTIVE_PROFILE', 2); -define('INACTIVE_MANUAL', 3); -define('INACTIVE_REMIND', 4); +define('INACTIVE_REGISTER', 1); // Newly registered account +define('INACTIVE_PROFILE', 2); // Profile details changed +define('INACTIVE_MANUAL', 3); // Account deactivated by administrator +define('INACTIVE_REMIND', 4); // Forced user account reactivation // ACL define('ACL_NEVER', 0); |