alecpl
2011-11-10 bed577e41478f39862ec04016aed8d7aaaac7d1e
- Fix handling of type separator in get_col_values()


1 files modified
2 ■■■ changed files
program/include/rcube_addressbook.php 2 ●●● patch | view | raw | blame | history
program/include/rcube_addressbook.php
@@ -403,7 +403,7 @@
    {
        $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);
                }