From 65d14c7e97fe468d7d902a3d01fd7f9d9a634756 Mon Sep 17 00:00:00 2001 From: mark_story Date: Thu, 3 Jul 2014 09:10:20 -0400 Subject: [PATCH] Remove mention of Role/default as it doesn't exist. The default role merging was removed in 3abfaeecf30b845ac3a309f011bc460222a923b4 and shouldn't be mentioned in the docs. Fixes #3871 --- app/Config/acl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Config/acl.php b/app/Config/acl.php index bbe18552f..c056b6c32 100644 --- a/app/Config/acl.php +++ b/app/Config/acl.php @@ -99,7 +99,7 @@ * }}} * * Ok, so as jeff inherits from Role/manager he's matched every rule that references User/jeff, Role/manager, - * Role/editor, Role/accountant and Role/default. However, for jeff, rules for User/jeff are more specific than + * Role/editor, and Role/accountant. However, for jeff, rules for User/jeff are more specific than * rules for Role/manager, rules for Role/manager are more specific than rules for Role/editor and so on. * This is important when allow and deny rules match for a role. E.g. Role/accountant is allowed * controllers/invoices/* but at the same time controllers/invoices/delete is denied. But there is a more