Skip to content

Commit

Permalink
general fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Eichhorn committed Apr 19, 2024
1 parent 22e4e67 commit 5475276
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Controller/BackendController.php
Original file line number Diff line number Diff line change
Expand Up @@ -556,9 +556,7 @@ public function viewModuleInfo(RequestAbstract $request, ResponseAbstract $respo
}

$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;
}
Expand Down

0 comments on commit 5475276

Please sign in to comment.