diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-05-16 10:34:09 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-05-16 10:36:14 +0200 |
commit | 8526ac991e8560b1cbf2c4b1a644a0f8e8228e76 (patch) | |
tree | d0f3fd51d8c5dcec6c5e4e9c4041a51504d91697 /program/steps/addressbook/list.inc | |
parent | a5fc70f55b34276108ac04fe5a4acdebcd98a65c (diff) |
Fix object reference
Diffstat (limited to 'program/steps/addressbook/list.inc')
-rw-r--r-- | program/steps/addressbook/list.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/addressbook/list.inc b/program/steps/addressbook/list.inc index 5876f3c6f..cc3fc3e11 100644 --- a/program/steps/addressbook/list.inc +++ b/program/steps/addressbook/list.inc @@ -34,7 +34,7 @@ if (!empty($_REQUEST['_search']) && isset($_SESSION['search'][$_REQUEST['_search $page = isset($_SESSION['page']) ? $_SESSION['page'] : 1; $_SESSION['page'] = $page; - $sort_col = $this->config->get('addressbook_sort_col', 'name'); + $sort_col = $RCMAIL->config->get('addressbook_sort_col', 'name'); // Get records from all sources foreach ($search as $s => $set) { |