From f02e4865801fed297b32b7582f9d50514211e276 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 22 Dec 2019 14:32:46 +0000 Subject: [PATCH] Tweak peppermint.josn access check message again --- core/01-settings.fragment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/01-settings.fragment.php b/core/01-settings.fragment.php index baa9034..bd5a6f6 100644 --- a/core/01-settings.fragment.php +++ b/core/01-settings.fragment.php @@ -24,7 +24,7 @@ $settingsFilename = "peppermint.json"; if(file_exists("$settingsFilename.compromised")) { http_response_code(500); header("content-type: text/plain"); - exit("Error: $settingsFilename.compromised exists on disk, so it's likely you need to block access to 'peppermint.json' from the internet. If you've done this already, please delete $settingsFilename.compromised and reload this page.\n\nThis check was done as part of the first run wizard."); + exit("Error: $settingsFilename.compromised exists on disk, so it's likely you need to block access to 'peppermint.json' from the internet. If you've done this already, please delete $settingsFilename.compromised and reload this page.\n\nIf you've done this check manually, please set the disable_peppermint_access_check setting to false.\n\nThis check was done as part of the first run wizard."); } $guiConfig = json_decode($guiConfig);