From 0d7ecea6cb78840430cf249beac3941e55397ed9 Mon Sep 17 00:00:00 2001 From: mark_story Date: Tue, 16 Nov 2010 23:09:22 -0500 Subject: [PATCH] Adding AppShell to the ignored shell list in CommandListShell. --- cake/console/shells/command_list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/console/shells/command_list.php b/cake/console/shells/command_list.php index 613f65dd7..cd05af4ba 100644 --- a/cake/console/shells/command_list.php +++ b/cake/console/shells/command_list.php @@ -111,7 +111,7 @@ class CommandListShell extends Shell { continue; } foreach ($shells as $shell) { - if ($shell !== 'shell.php') { + if ($shell !== 'shell.php' && $shell !== 'app_shell.php') { $shell = str_replace('.php', '', $shell); $shellList[$shell][$type] = $type; }