openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 0f39ea1d9682eb8f66c2e2d271429e3bf83d2606
parent 15d14433d57f1c3941eec4e324a22858c8dba96c
Author: dankert <devnull@localhost>
Date:   Sat, 27 Jan 2007 01:17:02 +0100

Fehlermeldung unterdr?cken, wenn Binding fehlschl?gt.

Diffstat:
serviceClasses/Ldap.class.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/serviceClasses/Ldap.class.php b/serviceClasses/Ldap.class.php @@ -75,7 +75,7 @@ class Ldap */ function bind( $user,$pw ) { - return ldap_bind( $this->connection,$user,$pw); + return @ldap_bind( $this->connection,$user,$pw); } @@ -85,7 +85,7 @@ class Ldap */ function bindAnonymous() { - return ldap_bind( $this->connection ); + return @ldap_bind( $this->connection ); }