From efac10d3de06eac4e4930eb57016aa52a0e3767b Mon Sep 17 00:00:00 2001 From: mark_story Date: Tue, 26 Oct 2010 22:40:11 -0400 Subject: [PATCH] Making the cake --help shortcut pass along the other options. --- cake/console/shell_dispatcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/console/shell_dispatcher.php b/cake/console/shell_dispatcher.php index 3a2f9b649..5b1b6a8fe 100644 --- a/cake/console/shell_dispatcher.php +++ b/cake/console/shell_dispatcher.php @@ -311,7 +311,7 @@ class ShellDispatcher { * */ public function help() { - $this->args = array('command_list'); + $this->args = array_merge(array('command_list'), $this->args); $this->dispatch(); }