summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_vcard.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2015-02-22 10:43:48 +0100
committerAleksander Machniak <alec@alec.pl>2015-02-22 10:43:48 +0100
commitbd82526e41e54fa001c851d48b4e7823aa5e7bcd (patch)
treeb85e6b851a9252f3d0a6f1ebdb58f2683808bc96 /program/lib/Roundcube/rcube_vcard.php
parent3ab1b1a6ba4f1f076f1e095bfecfc54054aaf935 (diff)
Fix missing or not up-to-date CATEGORIES entry in vCard export (#1490277)
Diffstat (limited to 'program/lib/Roundcube/rcube_vcard.php')
-rw-r--r--program/lib/Roundcube/rcube_vcard.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/program/lib/Roundcube/rcube_vcard.php b/program/lib/Roundcube/rcube_vcard.php
index 7f6b11851..c0e261df4 100644
--- a/program/lib/Roundcube/rcube_vcard.php
+++ b/program/lib/Roundcube/rcube_vcard.php
@@ -393,6 +393,10 @@ class rcube_vcard
$this->raw[$tag][$index]['type'] = explode(',', ($typemap[$type_uc] ? $typemap[$type_uc] : $type));
}
}
+ else {
+ unset($this->raw[$tag]);
+ }
+
break;
}
}