summaryrefslogtreecommitdiff
path: root/program/steps/addressbook/export.inc
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2012-03-05 19:56:17 +0000
committeralecpl <alec@alec.pl>2012-03-05 19:56:17 +0000
commit0203f16312bc949a5cf46ce90fa43de9119e23a8 (patch)
tree5865daa13dac86d01cf4ff74cdf88cb8d56b08e7 /program/steps/addressbook/export.inc
parent377bc60482628954bcd7bcaca7682ecd9594089c (diff)
- Fix duplicate names handling in addressbook searches (#1488375)
Diffstat (limited to 'program/steps/addressbook/export.inc')
-rw-r--r--program/steps/addressbook/export.inc3
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);