]> git.sur5r.net Git - contagged/commitdiff
nicer error display
authorChristian Weiske <cweiske@cweiske.de>
Mon, 30 Sep 2013 20:16:07 +0000 (22:16 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Mon, 30 Sep 2013 20:16:07 +0000 (22:16 +0200)
inc/template.php

index a86152092c22bce1dd12c3f257bfd9df02e12f4a..dc913bd07435df1397f9335dcae2996cbc1d26d5 100644 (file)
@@ -117,9 +117,9 @@ function tpl_ldaperror($message=""){
   if($errno){
     $__LDAPERROR__ .= ldap_err2str($errno);
     if(!empty($message)){
-      $__LDAPERROR__ .= "($message)";
+      $__LDAPERROR__ .= " ($message)";
     }elseif($errno == 4){
-      $__LDAPERROR__ .= "(You need to increase this limit in your server config)";
+      $__LDAPERROR__ .= " (You need to increase this limit in your server config)";
     }
     $__LDAPERROR__ .= '<br />';
   }