1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-05-31 21:52:56 +00:00

Add error detection to peppermint.json loader

This commit is contained in:
Starbeamrainbowlabs 2016-09-19 10:28:32 +01:00
parent 37c6273623
commit 961ac2c89c

View file

@ -33,6 +33,12 @@ if(!file_exists("peppermint.json"))
else else
$settings = json_decode(file_get_contents("peppermint.json")); $settings = json_decode(file_get_contents("peppermint.json"));
if($settings === null)
{
header("content-type: text/plain");
exit("Error: Failed to decode the settings file! Does it contain a syntax error?");
}
if($settings->css === "auto") if($settings->css === "auto")
{ {
$settings->css = <<<THEMECSS $settings->css = <<<THEMECSS