From bed577e41478f39862ec04016aed8d7aaaac7d1e Mon Sep 17 00:00:00 2001 From: alecpl Date: Thu, 10 Nov 2011 14:02:20 +0000 Subject: - Fix handling of type separator in get_col_values() --- program/include/rcube_addressbook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/include') diff --git a/program/include/rcube_addressbook.php b/program/include/rcube_addressbook.php index 2b97dea09..5f17f4a8a 100644 --- a/program/include/rcube_addressbook.php +++ b/program/include/rcube_addressbook.php @@ -403,7 +403,7 @@ abstract class rcube_addressbook { $out = array(); foreach ($data as $c => $values) { - if (strpos($c, $col) === 0) { + if ($c === $col || strpos($c, $col.':') === 0) { if ($flat) { $out = array_merge($out, (array)$values); } -- cgit v1.2.3