From 54b5b1bdc8a1892926d6e229c99407ede75f8984 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Thu, 23 Jan 2014 15:38:27 +0100 Subject: [PATCH] Fix typo --- plugins/libcalendaring/libvcalendar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/libcalendaring/libvcalendar.php b/plugins/libcalendaring/libvcalendar.php index 4b6dc5f2..47663175 100644 --- a/plugins/libcalendaring/libvcalendar.php +++ b/plugins/libcalendaring/libvcalendar.php @@ -465,7 +465,7 @@ class libvcalendar implements Iterator case 'X-MICROSOFT-CDO-BUSYSTATUS': if ($prop->value == 'OOF') - $event['free_busy'] == 'outofoffice'; + $event['free_busy'] = 'outofoffice'; else if (in_array($prop->value, array('FREE', 'BUSY', 'TENTATIVE'))) $event['free_busy'] = strtolower($prop->value); break;