diff options
author | alecpl <alec@alec.pl> | 2011-11-08 11:40:56 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-11-08 11:40:56 +0000 |
commit | 5e9065284e9f6f69f25899d035cad656d6bed7a9 (patch) | |
tree | 41f6e8b6b5eeafc677a6e147be33c4fd1f1f57e7 /program | |
parent | aa07b2290640061a65c9f90d5f30cfc5d4ada195 (diff) |
- Make $name property to be public (#1488140)
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_contacts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_contacts.php b/program/include/rcube_contacts.php index a2eeffc8a..e822d2c24 100644 --- a/program/include/rcube_contacts.php +++ b/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; |