Fix issue in router, while parsing 404 error page

This commit is contained in:
Léo Serre 2018-10-22 23:22:03 +02:00
parent 2ff2d03b9c
commit f5bc8b8f70
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ if($notfound) {
require_once('session.php');
require_once($config['models_folder']."d.wiki.php");
$wikiPage = new Kabano\WikiPage();
$wikiPage->checkUrl('404');
$wikiPage->checkPermalink('404');
$wikiPage->md2html();
$head['css'] = "d.index.css;d.wiki.css";
$head['title'] = $wikiPage->name;