Changeset 5411 in subversion


Ignore:
Timestamp:
Nov 10, 2011 9:02:20 AM (20 months ago)
Author:
alec
Message:
  • Fix handling of type separator in get_col_values()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube_addressbook.php

    r5406 r5411  
    404404        $out = array(); 
    405405        foreach ($data as $c => $values) { 
    406             if (strpos($c, $col) === 0) { 
     406            if ($c === $col || strpos($c, $col.':') === 0) { 
    407407                if ($flat) { 
    408408                    $out = array_merge($out, (array)$values); 
Note: See TracChangeset for help on using the changeset viewer.