From: hickert Date: Mon, 11 Jul 2005 09:54:06 +0000 (+0000) Subject: Fixed potential error with non existing binddn X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0630509776f8085d0fe44f9b3b95d85841820159;p=gosa.git Fixed potential error with non existing binddn git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@932 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_plugin.inc b/include/class_plugin.inc index 55cb82162..fdf9cd251 100644 --- a/include/class_plugin.inc +++ b/include/class_plugin.inc @@ -480,7 +480,7 @@ class plugin $this->reconnect= true; return (0); } else { - $this->error = "Could not bind to " . $binddn; + $this->error = "Could not bind to " . $credentials['ADMIN']; return NULL; } }