Skip to content

Commit

Permalink
Doc: Allow to view documentation of disabled modules
Browse files Browse the repository at this point in the history
fixes #13387
  • Loading branch information
lippserd committed Dec 2, 2016
1 parent 2fa854b commit 65f0a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/doc/application/controllers/ModuleController.php
Expand Up @@ -91,7 +91,7 @@ public function tocAction()
$module = $this->params->getRequired('moduleName');
$this->assertModuleInstalled($module);
$moduleManager = Icinga::app()->getModuleManager();
$name = $moduleManager->getModule($module)->getTitle();
$name = $moduleManager->getModule($module, false)->getTitle();
try {
$this->renderToc(
$this->getPath($module, Icinga::app()->getModuleManager()->getModuleDir($module, '/doc')),
Expand Down

0 comments on commit 65f0a46

Please sign in to comment.