From 633c92eae865e957121e08de634aeee11a8b3992 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Mon, 24 Apr 2023 14:03:36 +0200 Subject: Updated 18 files, added 1692 files and deleted includes/system/compare.inc (automated) --- includes/jobs/PKSwitches.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'includes/jobs/PKSwitches.php') diff --git a/includes/jobs/PKSwitches.php b/includes/jobs/PKSwitches.php index b7a755d..e13118f 100644 --- a/includes/jobs/PKSwitches.php +++ b/includes/jobs/PKSwitches.php @@ -2,6 +2,7 @@ $options = json_decode($argv[1], true); $_SERVER['DOCUMENT_ROOT'] = "../.."; +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/composer/vendor/autoload.php'; use ColorThief\ColorThief; @@ -82,4 +83,10 @@ if ($switches1 !== null && $switches2 !== null && $switches3 !== null && $switch file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/switches.json", json_encode([...$switches1, ...$switches2, ...$switches3, ...$switches4, ...$switches5, ...$switches6], JSON_PRETTY_PRINT)); } else { echo("Data is invalid\n"); -} \ No newline at end of file +} + +echo("Clearing cache\n"); +file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/cache/history.json", "{}"); +echo("Cleared cache\n"); + +require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/jobs/RefreshCache.php"; \ No newline at end of file -- cgit