Changeset bed577e in github


Ignore:
Timestamp:
Nov 10, 2011 9:02:20 AM (19 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
710b1bd
Parents:
55a8a8c
Message:
  • Fix handling of type separator in get_col_values()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_addressbook.php

    rf21a04c rbed577e  
    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.