diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-08 11:40:56 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-11-08 11:40:56 +0000 |
| commit | 5374ccd617bef1851a55475efc9a8ed2935eb7e2 (patch) | |
| tree | 6de74ff8af7c844f555d1b89b6143676654efb23 | |
| parent | 8878e4d05717c0e0cb4396e374c6c2ca74db6473 (diff) | |
- Make $name property to be public (#1488140)
git-svn-id: https://svn.roundcube.net/trunk@5399 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/rcube_contacts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_contacts.php b/roundcubemail/program/include/rcube_contacts.php index a2eeffc8a..e822d2c24 100644 --- a/roundcubemail/program/include/rcube_contacts.php +++ b/roundcubemail/program/include/rcube_contacts.php @@ -41,7 +41,6 @@ class rcube_contacts extends rcube_addressbook private $user_id = 0; private $filter = null; private $result = null; - private $name; private $cache; private $table_cols = array('name', 'email', 'firstname', 'surname'); private $fulltext_cols = array('name', 'firstname', 'surname', 'middlename', 'nickname', @@ -50,6 +49,7 @@ class rcube_contacts extends rcube_addressbook // public properties public $primary_key = 'contact_id'; + public $name; public $readonly = false; public $groups = true; public $undelete = true; |
