diff --git a/modules/doc/application/views/scripts/chapter.phtml b/modules/doc/application/views/scripts/chapter.phtml index 4a5af6a25..4341967ba 100644 --- a/modules/doc/application/views/scripts/chapter.phtml +++ b/modules/doc/application/views/scripts/chapter.phtml @@ -2,5 +2,5 @@ showOnlyCloseButton() ?>
- +
diff --git a/modules/doc/library/Doc/DocController.php b/modules/doc/library/Doc/DocController.php index 0d73ae127..a003b911b 100644 --- a/modules/doc/library/Doc/DocController.php +++ b/modules/doc/library/Doc/DocController.php @@ -18,7 +18,7 @@ class DocController extends ModuleActionController protected function renderChapter($path, $chapter, $url, array $urlParams = array()) { $parser = new DocParser($path); - $section = new SectionRenderer($parser->getDocTree(), SectionRenderer::decodeUrlParam($chapter)); + $section = new DocSectionRenderer($parser->getDocTree(), DocSectionRenderer::decodeUrlParam($chapter)); $this->view->section = $section ->setUrl($url) ->setUrlParams($urlParams) diff --git a/modules/doc/library/Doc/SectionRenderer.php b/modules/doc/library/Doc/DocSectionRenderer.php similarity index 99% rename from modules/doc/library/Doc/SectionRenderer.php rename to modules/doc/library/Doc/DocSectionRenderer.php index 4e8678c3a..a4b71df4d 100644 --- a/modules/doc/library/Doc/SectionRenderer.php +++ b/modules/doc/library/Doc/DocSectionRenderer.php @@ -20,7 +20,7 @@ use Icinga\Web\View; /** * Section renderer */ -class SectionRenderer extends Renderer +class DocSectionRenderer extends Renderer { /** * Content to render