Changeset 9ac31a6 in github


Ignore:
Timestamp:
Jan 13, 2012 6:37:00 AM (17 months ago)
Author:
alecpl <alec@…>
Branches:
release-0.7
Children:
68d3aad
Parents:
3c36bcc
Message:
  • Fix wrong variable name in rcube_ldap.php (#1488302)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r3c36bcc r9ac31a6  
    22=========================== 
    33 
     4- Fix wrong variable name in rcube_ldap.php (#1488302) 
    45- Make mime type detection based on filename extension to be case-insensitive 
    56- Fix failure on MySQL database upgrade from 0.7 - text column can't have default value (#1488300) 
  • program/include/rcube_ldap.php

    r49cdae9 r9ac31a6  
    12351235            ) { 
    12361236                $entries_count = ldap_count_entries($this->conn, $this->ldap_result); 
    1237                 $this->_debug("S: $count_entries record(s)"); 
    1238  
    1239                 return $count ? $count_entries : true; 
     1237                $this->_debug("S: $entries_count record(s)"); 
     1238 
     1239                return $count ? $entries_count : true; 
    12401240            } 
    12411241            else { 
Note: See TracChangeset for help on using the changeset viewer.