Use the right variable when unserializing old attendee data
This commit is contained in:
parent
da471bf0ad
commit
2e458987bf
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue