diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-25 14:15:12 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-25 14:15:12 +0100 |
commit | 13dc9f2c862668554d87dcbf95f2f7bbaf221bf3 (patch) | |
tree | 2ba86e5bbfe89539d961aeb5793e6f77b4e94202 /program/steps/addressbook/list.inc | |
parent | 1730cf8d7b59c04e3db0b5425c5cd9401bfc1c43 (diff) |
Move rcmail_contact_key() to rcube_addressbook::compose_contact_key()
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 06a1e10a3..1bb28658b 100644 --- a/program/steps/addressbook/list.inc +++ b/program/steps/addressbook/list.inc @@ -49,7 +49,7 @@ if (!empty($_REQUEST['_search']) && isset($_SESSION['search'][$_REQUEST['_search while ($row = $result->next()) { $row['sourceid'] = $s; - $key = rcmail_contact_key($row, $sort_col); + $key = rcube_addressbook::compose_contact_key($row, $sort_col); $records[$key] = $row; } unset($result); |