* Addressbook: use vCard version 3 when exporting via context menu

This commit is contained in:
Ralf Becker 2012-02-10 20:32:45 +00:00
parent 56f286e877
commit f8d2a88e41

View File

@ -843,7 +843,8 @@ class addressbook_ui extends addressbook_bo
case 'vcard': case 'vcard':
$action_msg = lang('exported'); $action_msg = lang('exported');
ExecMethod('addressbook.addressbook_vcal.export',$checked); $vcard = new addressbook_vcal('addressbook','text/vcard');
$vcard->export($checked);
// does not return! // does not return!
$Ok = false; $Ok = false;
break; break;