Rename ACL_ constants

git-svn-id: file:///svn/phpbb/trunk@3819 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-04-12 20:01:10 +00:00
parent 32f0680b30
commit 52530af898

View file

@ -76,9 +76,9 @@ define('USER_AVATAR_REMOTE', 2);
define('USER_AVATAR_GALLERY', 3); define('USER_AVATAR_GALLERY', 3);
// ACL // ACL
define('ACL_DENY', 0); define('ACL_NO', 0);
define('ACL_ALLOW', 1); define('ACL_YES', 1);
define('ACL_INHERIT', 2); define('ACL_UNSET', 2);
// Group settings // Group settings
define('GROUP_OPEN', 0); define('GROUP_OPEN', 0);
@ -122,7 +122,7 @@ define('BBCODE_UID_LEN', 5);
// Table names // Table names
define('ACL_GROUPS_TABLE', $table_prefix.'auth_groups'); define('ACL_GROUPS_TABLE', $table_prefix.'auth_groups');
define('ACL_OPTIONS_TABLE', $table_prefix.'auth_options'); 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_PRESETS_TABLE', $table_prefix.'auth_presets');
define('ACL_USERS_TABLE', $table_prefix.'auth_users'); define('ACL_USERS_TABLE', $table_prefix.'auth_users');
define('ATTACHMENTS_TABLE', $table_prefix.'attachments'); define('ATTACHMENTS_TABLE', $table_prefix.'attachments');