diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2013-05-08 12:22:18 (GMT) |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2013-06-21 10:04:16 (GMT) |
commit | db0e50ce28c876f3672235fbd974d6089e63373c (patch) | |
tree | 8a50d763562a8ca1e810bb0437eabb3241da6552 /plugins | |
parent | 6c786252a077409cea0769fda4ec3f27337e8e16 (diff) | |
download | roundcubemail-plugins-kolab-db0e50ce28c876f3672235fbd974d6089e63373c.tar.gz |
Fix "incompat. declaration" error - revert part of 27e57c73352e1966918cdfe567c32c5a4844be82
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/kolab_addressbook/lib/rcube_kolab_contacts.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php b/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php index 35312d9..5437056 100644 --- a/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php +++ b/plugins/kolab_addressbook/lib/rcube_kolab_contacts.php @@ -245,11 +245,12 @@ class rcube_kolab_contacts extends rcube_addressbook /** * List the current set of contact records * - * @param int Only return this number of records, use negative values for tail + * @param array List of cols to show + * @param int Only return this number of records, use negative values for tail * * @return array Indexed list of contact records, each a hash array */ - public function list_records($subset = 0) + public function list_records($cols = null, $subset = 0) { $this->result = new rcube_result_set(0, ($this->list_page-1) * $this->page_size);; |