Update cache example

This commit is contained in:
2026-01-04 20:36:42 -05:00
parent 7d4555c317
commit 312ea3b1e8
+2 -2
View File
@@ -9,5 +9,5 @@ header("Content-Type: application/xml; charset=utf-8");
readfile($cacheFile); readfile($cacheFile);
// trigger background regeneration // trigger background regeneration
exec(escapeshellcmd($command) . " " . escapeshellarg($argument) . " > " . escapeshellarg($tempFile) . " 2>&1 && mv " . escapeshellarg($tempFile) . " " . escapeshellarg($cacheFile) . " &"); exec(escapeshellcmd($command) . " " . escapeshellarg($argument) . " > " . escapeshellarg($cacheFile) . " 2>&1 &");
?> ?>