diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-09-08 15:36:05 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-09-08 15:36:05 +0200 |
commit | 79367a563143272385c8666ff02dbe7ab3126f35 (patch) | |
tree | be6e31e9cfb6321ad8222c02e94db04040078e79 /program/lib/Roundcube/rcube_addressbook.php | |
parent | 9e9d62d7862bf8fddbf56ae3b0f0d9d9ac0d4c4c (diff) |
Save groups membership in VCard export (#1488509)
Diffstat (limited to 'program/lib/Roundcube/rcube_addressbook.php')
-rw-r--r-- | program/lib/Roundcube/rcube_addressbook.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_addressbook.php b/program/lib/Roundcube/rcube_addressbook.php index 4ed139c45..73d6e4d66 100644 --- a/program/lib/Roundcube/rcube_addressbook.php +++ b/program/lib/Roundcube/rcube_addressbook.php @@ -3,7 +3,7 @@ /* +-----------------------------------------------------------------------+ | This file is part of the Roundcube Webmail client | - | Copyright (C) 2006-2012, The Roundcube Dev Team | + | Copyright (C) 2006-2013, The Roundcube Dev Team | | | | Licensed under the GNU General Public License version 3 or | | any later version with exceptions for skins & plugins. | @@ -35,6 +35,7 @@ abstract class rcube_addressbook /** public properties (mandatory) */ public $primary_key; public $groups = false; + public $export_groups = true; public $readonly = true; public $searchonly = false; public $undelete = false; |