Commit cffb55a2 by Qiang Xue

Fixes #1227: help command displays invalid module command list

parent a69fa1bf
...@@ -124,7 +124,7 @@ class HelpController extends Controller ...@@ -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;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment