Fix so exported vCard specifies encoding in v3-compatible format (#1489183)

pull/82/head
Aleksander Machniak 12 years ago
parent 38271f246b
commit 428764bf34

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail CHANGELOG Roundcube Webmail
=========================== ===========================
- Fix so exported vCard specifies encoding in v3-compatible format (#1489183)
- Fix session issues when local and database time differs (#1486132) - Fix session issues when local and database time differs (#1486132)
- Fix thread cache syncronization/validation (#1489028) - Fix thread cache syncronization/validation (#1489028)
- Add option show_real_foldernames to disable localization of special folders - Add option show_real_foldernames to disable localization of special folders

@ -714,9 +714,15 @@ class rcube_vcard
$value[] = $attrvalues; $value[] = $attrvalues;
} }
else if (is_bool($attrvalues)) { else if (is_bool($attrvalues)) {
// true means just tag, not tag=value, as in PHOTO;BASE64:... // true means just a tag, not tag=value, as in PHOTO;BASE64:...
if ($attrvalues) { if ($attrvalues) {
$attr .= strtoupper(";$attrname"); // vCard v3 uses ENCODING=B (#1489183)
if ($attrname == 'base64') {
$attr .= ";ENCODING=B";
}
else {
$attr .= strtoupper(";$attrname");
}
} }
} }
else { else {

Loading…
Cancel
Save