Adding AppShell to the ignored shell list in CommandListShell.

This commit is contained in:
mark_story 2010-11-16 23:09:22 -05:00
parent b914709f32
commit 0d7ecea6cb

View file

@ -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;
}