Removing implode(), as its done in the OptionParser now.

This commit is contained in:
mark_story 2010-10-10 17:19:14 -04:00
parent b5630a5e30
commit ae04ae6e8a

View file

@ -495,7 +495,7 @@ class AclShell extends Shell {
))->addSubcommand('initdb', array( ))->addSubcommand('initdb', array(
'help' => __('Initialize the DbAcl tables. Uses this command : cake schema run create DbAcl') 'help' => __('Initialize the DbAcl tables. Uses this command : cake schema run create DbAcl')
))->epilog( ))->epilog(
implode("\n", array( array(
'Node and parent arguments can be in one of the following formats:', 'Node and parent arguments can be in one of the following formats:',
'', '',
' - <model>.<id> - The node will be bound to a specific record of the given model.', ' - <model>.<id> - The node will be bound to a specific record of the given model.',
@ -505,7 +505,7 @@ class AclShell extends Shell {
" i.e. <group>/<subgroup>/<parent>.", " i.e. <group>/<subgroup>/<parent>.",
'', '',
"To add a node at the root level, enter 'root' or '/' as the <parent> parameter." "To add a node at the root level, enter 'root' or '/' as the <parent> parameter."
)) )
); );
return $parser; return $parser;
} }