diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-12 20:01:10 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-12 20:01:10 +0000 |
commit | 52530af898ecb78b7bdca71ef7fedabe20a52015 (patch) | |
tree | cde24e8ae2dfb799c692637d6a5eb80f123e6644 /phpBB/common.php | |
parent | 32f0680b3060977bc9bee3c4df3a30a9648a43c9 (diff) | |
download | forums-52530af898ecb78b7bdca71ef7fedabe20a52015.tar forums-52530af898ecb78b7bdca71ef7fedabe20a52015.tar.gz forums-52530af898ecb78b7bdca71ef7fedabe20a52015.tar.bz2 forums-52530af898ecb78b7bdca71ef7fedabe20a52015.tar.xz forums-52530af898ecb78b7bdca71ef7fedabe20a52015.zip |
Rename ACL_ constants
git-svn-id: file:///svn/phpbb/trunk@3819 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r-- | phpBB/common.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index f160838600..6c381fd349 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -76,9 +76,9 @@ define('USER_AVATAR_REMOTE', 2); define('USER_AVATAR_GALLERY', 3); // ACL -define('ACL_DENY', 0); -define('ACL_ALLOW', 1); -define('ACL_INHERIT', 2); +define('ACL_NO', 0); +define('ACL_YES', 1); +define('ACL_UNSET', 2); // Group settings define('GROUP_OPEN', 0); @@ -122,7 +122,7 @@ define('BBCODE_UID_LEN', 5); // Table names define('ACL_GROUPS_TABLE', $table_prefix.'auth_groups'); define('ACL_OPTIONS_TABLE', $table_prefix.'auth_options'); -define('ACL_DEPS_TABLE', $table_prefix.'auth_dependencies'); +define('ACL_DEPS_TABLE', $table_prefix.'auth_deps'); define('ACL_PRESETS_TABLE', $table_prefix.'auth_presets'); define('ACL_USERS_TABLE', $table_prefix.'auth_users'); define('ATTACHMENTS_TABLE', $table_prefix.'attachments'); |