From db3e2e074e953e4fe627dbc1dbd2bcfe4c3ecd0c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 12 Jul 2018 19:59:07 +0200 Subject: [PATCH] Fix path check --- Theme/Backend/help-module-list.tpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Theme/Backend/help-module-list.tpl.php b/Theme/Backend/help-module-list.tpl.php index 55e5de1..00e4544 100644 --- a/Theme/Backend/help-module-list.tpl.php +++ b/Theme/Backend/help-module-list.tpl.php @@ -31,7 +31,7 @@ $modules = $this->app->moduleManager->getInstalledModules(); $module) : - if ((\realpath(__DIR__ . '/../../../' . $module['directory'] . '/Docs/Help/en/table_of_contents.md')) === false) { + if ((\realpath(__DIR__ . '/../../../' . $module['directory'] . '/Docs/Help/en/SUMMARY.md')) === false) { continue; }