Use the right variable when unserializing old attendee data

This commit is contained in:
Thomas Bruederli 2015-10-19 23:01:48 +02:00
parent da471bf0ad
commit 2e458987bf

View file

@ -1450,7 +1450,7 @@ class database_driver extends calendar_driver
}
// decode the old serialization format
else {
foreach (explode("\n", $event['attendees']) as $line) {
foreach (explode("\n", $s_attendees) as $line) {
$att = array();
foreach (rcube_utils::explode_quoted_string(';', $line) as $prop) {
list($key, $value) = explode("=", $prop);