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/list.inc | |
parent | 377bc60482628954bcd7bcaca7682ecd9594089c (diff) |
- Fix duplicate names handling in addressbook searches (#1488375)
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 de7149bce..91852a421 100644 --- a/program/steps/addressbook/list.inc +++ b/program/steps/addressbook/list.inc @@ -50,7 +50,7 @@ if (!empty($_REQUEST['_search']) && isset($_SESSION['search'][$_REQUEST['_search while ($row = $result->next()) { $row['sourceid'] = $s; - $key = $row[$sort_col] . ':' . $row['sourceid']; + $key = rcmail_contact_key($row, $sort_col); $records[$key] = $row; } unset($result); |