From: cajus Date: Mon, 22 May 2006 15:31:58 +0000 (+0000) Subject: Fixed output messages while copying FAI objects X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=64666111bd2f20f4d23d3a55a0346280014990e5;p=gosa.git Fixed output messages while copying FAI objects git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3491 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_ldap.inc b/include/class_ldap.inc index a1f960aa3..2fbf59e6d 100644 --- a/include/class_ldap.inc +++ b/include/class_ldap.inc @@ -444,16 +444,16 @@ class LDAP{ error_reporting(E_ALL); if($is_first){ - echo "

".sprintf(_("Creating copy of %s"),"".$sourcedn."")."

"; + echo "

".sprintf(_("Creating copy of %s"),"".@LDAP::fix($sourcedn)."")."

"; }else{ if(preg_match("/^ou=/",$sourcedn)){ - echo "

"._("Processing")." $destinationdn

"; + echo "

"._("Processing")." ".@LDAP::fix($destinationdn)."

"; }else{ $tmp = split(",",$sourcedn); echo " "._("Object").": "; - $deststr = $destinationdn; + $deststr = @LDAP::fix($destinationdn); if(strlen($deststr) > 96){ $deststr = substr($deststr,0,96)."..."; }