Ignore:
Timestamp:
Feb 5, 2012 9:17:19 AM (16 months ago)
Author:
alec
Message:
  • Support AD's objectClass=group
File:
1 edited

Legend:

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

    r5850 r5853  
    555555        } 
    556556 
    557         for ($i=0; $i < $entries["count"]; $i++) 
     557        for ($i=0; $i < $entries['count']; $i++) 
    558558        { 
    559559            $entry = $entries[$i]; 
     
    565565            { 
    566566                switch (strtolower($objectclass)) { 
     567                    case "group": 
    567568                    case "groupofnames": 
    568569                    case "kolabgroupofnames": 
     
    578579                } 
    579580            } 
    580              
     581 
    581582            if ($this->prop['sizelimit'] && count($group_members) > $this->prop['sizelimit']) 
    582583              break; 
     
    15391540            for ($j=0; $j < $ldap_data[$i]['objectclass']['count']; $j++) { 
    15401541                switch (strtolower($ldap_data[$i]['objectclass'][$j])) { 
     1542                    case 'group': 
    15411543                    case 'groupofnames': 
    15421544                    case 'kolabgroupofnames': 
Note: See TracChangeset for help on using the changeset viewer.