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

This commit is contained in:
Ralf Becker 2012-02-10 20:33:21 +00:00
parent 01ee489460
commit eb331dc4e8

View File

@ -841,7 +841,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;