diff options
author | alecpl <alec@alec.pl> | 2012-03-05 19:56:17 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-03-05 19:56:17 +0000 |
commit | 0203f16312bc949a5cf46ce90fa43de9119e23a8 (patch) | |
tree | 5865daa13dac86d01cf4ff74cdf88cb8d56b08e7 /program/steps/addressbook/export.inc | |
parent | 377bc60482628954bcd7bcaca7682ecd9594089c (diff) |
- Fix duplicate names handling in addressbook searches (#1488375)
Diffstat (limited to 'program/steps/addressbook/export.inc')
-rw-r--r-- | program/steps/addressbook/export.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/steps/addressbook/export.inc b/program/steps/addressbook/export.inc index 0fe193bf2..c0dbd8bf1 100644 --- a/program/steps/addressbook/export.inc +++ b/program/steps/addressbook/export.inc @@ -27,6 +27,7 @@ // Use search result if (!empty($_REQUEST['_search']) && isset($_SESSION['search'][$_REQUEST['_search']])) { + $sort_col = $RCMAIL->config->get('addressbook_sort_col', 'name'); $search = (array)$_SESSION['search'][$_REQUEST['_search']]; $records = array(); @@ -44,7 +45,7 @@ if (!empty($_REQUEST['_search']) && isset($_SESSION['search'][$_REQUEST['_search while ($row = $result->next()) { $row['sourceid'] = $s; - $key = $row['name'] . ':' . $row['sourceid']; + $key = rcmail_contact_key($row, $sort_col); $records[$key] = $row; } unset($result); |