Fix path check

This commit is contained in:
Dennis Eichhorn 2018-07-12 19:59:07 +02:00
parent 1823076513
commit db3e2e074e

View File

@ -31,7 +31,7 @@ $modules = $this->app->moduleManager->getInstalledModules();
<td>
<tbody>
<?php $count = 0; foreach ($modules as $key => $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;
}