Changeset 52754

Show
Ignore:
Timestamp:
04/17/08 18:06:41 (2 years ago)
Author:
madarche
Message:

Fixed #1862: Problem with has_key of LDAPDirectoryVocabulary.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • CPS3/products/CPSDirectory/trunk/CHANGES

    r52649 r52754  
    77Bug fixes 
    88~~~~~~~~~ 
    9 - 
     9- #1862: Problem with has_key of LDAPDirectoryVocabulary. 
    1010New internal features 
    1111~~~~~~~~~~~~~~~~~~~~~ 
  • CPS3/products/CPSDirectory/trunk/LDAPDirectoryVocabulary.py

    r30963 r52754  
    1 # (C) Copyright 2004 Nuxeo SARL <http://nuxeo.com> 
     1# (C) Copyright 2004-2008 Nuxeo SAS <http://nuxeo.com> 
    22# Author: Florent Guillaume <fg@nuxeo.com> 
    33# 
     
    142142            return 1 
    143143        dir = self._getDirectory() 
    144         return dir.hasEntryByDN(key) 
     144        return dir._hasEntry(key) 
    145145 
    146146    security.declareProtected(ManagePortal, 'isUserModified')