Thomas Bruederli
2012-07-13 88fb5635109ff5ed994aa5624c0bc1a95c814176
program/include/rcube_addressbook.php
@@ -422,7 +422,7 @@
    function get_col_values($col, $data, $flat = false)
    {
        $out = array();
        foreach ($data as $c => $values) {
        foreach ((array)$data as $c => $values) {
            if ($c === $col || strpos($c, $col.':') === 0) {
                if ($flat) {
                    $out = array_merge($out, (array)$values);