Changeset 896b220 in github


Ignore:
Timestamp:
Jan 4, 2012 7:37:51 AM (17 months ago)
Author:
alecpl <alec@…>
Branches:
release-0.7
Children:
a33118f
Parents:
a128faf
Message:
Location:
program
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_ldap.php

    rf47d5e2 r896b220  
    12991299                    continue; 
    13001300 
     1301                list($col, $subtype) = explode(':', $rf); 
    13011302                $out['_raw_attrib'][$lf][$i] = $value; 
    13021303 
    13031304                if ($rf == 'email' && $this->mail_domain && !strpos($value, '@')) 
    13041305                    $out[$rf][] = sprintf('%s@%s', $value, $this->mail_domain); 
    1305                 else if (in_array($rf, array('street','zipcode','locality','country','region'))) 
    1306                     $out['address'][$i][$rf] = $value; 
     1306                else if (in_array($col, array('street','zipcode','locality','country','region'))) 
     1307                    $out['address'.($subtype?':':'').$subtype][$i][$col] = $value; 
    13071308                else if ($rec[$lf]['count'] > 1) 
    13081309                    $out[$rf][] = $value; 
  • program/localization/en_US/labels.inc

    r080c748 r896b220  
    253253$labels['nickname']     = 'Nickname'; 
    254254$labels['jobtitle']     = 'Job Title'; 
    255 $labels['organization'] = 'Company'; 
    256255$labels['department']   = 'Department'; 
    257256$labels['gender']       = 'Gender'; 
Note: See TracChangeset for help on using the changeset viewer.