Fixes #1227: help command displays invalid module command list

This commit is contained in:
Qiang Xue
2013-11-18 22:52:30 -05:00
parent a69fa1bfed
commit cffb55a260

View File

@ -124,7 +124,7 @@ class HelpController extends Controller
continue; continue;
} }
foreach ($this->getModuleCommands($child) as $command) { foreach ($this->getModuleCommands($child) as $command) {
$commands[] = $prefix . $id . '/' . $command; $commands[] = $command;
} }
} }