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(
'help' => __('Initialize the DbAcl tables. Uses this command : cake schema run create DbAcl')
))->epilog(
implode("\n", array(
array(
'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.',
@ -505,7 +505,7 @@ class AclShell extends Shell {
" i.e. <group>/<subgroup>/<parent>.",
'',
"To add a node at the root level, enter 'root' or '/' as the <parent> parameter."
))
)
);
return $parser;
}