parent
a74db1ddbb
commit
00603f61fc
1 changed files with 8 additions and 2 deletions
10
lib/Pico.php
10
lib/Pico.php
|
@ -847,8 +847,14 @@ class Pico
|
||||||
return $this->loadFileContent($contentDir . '404' . $contentExt);
|
return $this->loadFileContent($contentDir . '404' . $contentExt);
|
||||||
}
|
}
|
||||||
|
|
||||||
$errorFile = $contentDir . '404' . $contentExt;
|
// fallback to built-in error message
|
||||||
throw new RuntimeException('Required "' . $errorFile . '" not found');
|
$rawErrorContent = "---\n"
|
||||||
|
. "Title: Error 404\n"
|
||||||
|
. "Robots: noindex,nofollow\n"
|
||||||
|
. "---\n\n"
|
||||||
|
. "# Error 404\n\n"
|
||||||
|
. "Woops. Looks like this page doesn't exist.\n";
|
||||||
|
return $rawErrorContent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue