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
1 changed files with 6 additions and 0 deletions

View File

@ -33,6 +33,12 @@ if(!file_exists("peppermint.json"))
else
$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")
{
$settings->css = <<<THEMECSS