From db327a7a27e6ffdc615148711815f9fc2055acc0 Mon Sep 17 00:00:00 2001 From: James Downie Date: Tue, 8 Jul 2025 10:56:08 +1000 Subject: [PATCH] Fixed a broken file path reference in cal.php --- app/cal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cal.php b/app/cal.php index 9a25951..5cf6c29 100755 --- a/app/cal.php +++ b/app/cal.php @@ -10,7 +10,7 @@ header('Content-Disposition: inline; filename=calendar.ics'); date_default_timezone_set('Australia/Brisbane'); // Read and parse the JSON file -$json = file_get_contents('events.json'); +$json = file_get_contents('dat/events.json'); $events = json_decode($json, true); // Start of the iCalendar content