From 52530af898ecb78b7bdca71ef7fedabe20a52015 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sat, 12 Apr 2003 20:01:10 +0000 Subject: [PATCH] Rename ACL_ constants git-svn-id: file:///svn/phpbb/trunk@3819 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 8 ++++---- 1 file 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');