From 025090fbe9559ea87cf0161a33db8d43125403b1 Mon Sep 17 00:00:00 2001 From: mark_story Date: Thu, 14 Oct 2010 21:25:15 -0400 Subject: [PATCH] Applying patch from 'dragonfly' to improve help output for AclShell. Fixes #1198 --- cake/console/libs/acl.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cake/console/libs/acl.php b/cake/console/libs/acl.php index b1d10da08..ddedd74d2 100644 --- a/cake/console/libs/acl.php +++ b/cake/console/libs/acl.php @@ -434,21 +434,21 @@ class AclShell extends Shell { "\t" . __("For more detailed parameter usage info,", true) . "\n" . "\t" . __("see help for the 'create' command.", true), - 'grant' => "grant [] " . __("or", true) . " all\n" . + 'grant' => "grant [] " . __("or", true) . " all\n" . "\t" . __("Use this command to grant ACL permissions. Once executed, the ARO", true) . "\n" . "\t" . __("specified (and its children, if any) will have ALLOW access to the", true) . "\n" . "\t" . __("specified ACO action (and the ACO's children, if any).", true) . "\n" . "\t" . __("For more detailed parameter usage info,", true) . "\n" . "\t" . __("see help for the 'create' command.", true), - 'deny' => "deny []" . __("or", true) . " all\n" . + 'deny' => "deny []" . __("or", true) . " all\n" . "\t" . __("Use this command to deny ACL permissions. Once executed, the ARO", true) . "\n" . "\t" . __("specified (and its children, if any) will have DENY access to the", true) . "\n" . "\t" . __("specified ACO action (and the ACO's children, if any).", true) . "\n" . "\t" . __("For more detailed parameter usage info,", true) . "\n" . "\t" . __("see help for the 'create' command.", true), - 'inherit' => "inherit []" . __("or", true) . " all\n" . + 'inherit' => "inherit []" . __("or", true) . " all\n" . "\t" . __("Use this command to force a child ARO object to inherit its", true) . "\n" . "\t" . __("permissions settings from its parent.", true) . "\n" . "\t" . __("For more detailed parameter usage info,", true) . "\n" .