From ab70f0de0dedfa4ecdffe45f31f4bb756269858c Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Thu, 26 Oct 2006 17:49:50 +0000 Subject: [PATCH] translation fix --- lam/lib/modules.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lam/lib/modules.inc b/lam/lib/modules.inc index 1b188f2b..9620fc9c 100644 --- a/lam/lib/modules.inc +++ b/lam/lib/modules.inc @@ -1177,11 +1177,11 @@ class accountContainer { $search = substr($dn, 0, strpos($dn, ',')); $result = @ldap_search($_SESSION['ldap']->server(), $dn, $search); if (!$result) { - return array(array("ERROR", _("Unable to load LDAP entry: ") . $dn, ldap_error($_SESSION['ldap']->server()))); + return array(array("ERROR", _("Unable to load LDAP entry:") . " " . $dn, ldap_error($_SESSION['ldap']->server()))); } $entry = @ldap_first_entry($_SESSION['ldap']->server(), $result); if (!$entry) { - return array(array("ERROR", _("Unable to load LDAP entry: ") . $dn, ldap_error($_SESSION['ldap']->server()))); + return array(array("ERROR", _("Unable to load LDAP entry:") . " " . $dn, ldap_error($_SESSION['ldap']->server()))); } $this->dn = substr($dn, strpos($dn, ',')+1); $this->dn_orig = $dn;