From 54e376532054d53a5e6480d4f8e16c458ad5b0be Mon Sep 17 00:00:00 2001 From: jdarwood007 Date: Sun, 30 Aug 2026 16:59:02 -0700 Subject: [PATCH] [2.1] Typo --- Sources/Calendar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Calendar.php b/Sources/Calendar.php index e494904289..f79f32d706 100644 --- a/Sources/Calendar.php +++ b/Sources/Calendar.php @@ -588,7 +588,7 @@ function iCalDownload() $filecontents .= 'SEQUENCE:' . $event['sequence'] . "\n"; if (!empty($event['location'])) - $filecontents .= 'LOCATION:' . strtr($event['location'], array(',' => '\,', ';' => '\;', '\\\\' => '\\', "\r" => '', "\n" => '') . "\n"; + $filecontents .= 'LOCATION:' . strtr($event['location'], array(',' => '\,', ';' => '\;', '\\\\' => '\\', "\r" => '', "\n" => '')) . "\n"; $filecontents .= 'SUMMARY:' . strtr(implode('', $title), array("\r" => '', "\n" => '')); $filecontents .= 'UID:' . $event['eventid'] . '@' . str_replace(' ', '-', $mbname) . "\n";