general fixes

This commit is contained in:
Dennis Eichhorn 2024-04-19 02:08:37 +00:00
parent 22e4e678a6
commit 5475276b6e

View File

@ -556,9 +556,7 @@ final class BackendController extends Controller
}
$toParse = $path === false ? '' : \file_get_contents($path);
$content = Markdown::parse($toParse === false ? '' : $toParse);
$view->data['introduction'] = $content;
$view->data['introduction'] = Markdown::parse($toParse === false ? '' : $toParse);
return $view;
}