From 64666111bd2f20f4d23d3a55a0346280014990e5 Mon Sep 17 00:00:00 2001 From: cajus Date: Mon, 22 May 2006 15:31:58 +0000 Subject: [PATCH] Fixed output messages while copying FAI objects git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3491 594d385d-05f5-0310-b6e9-bd551577e9d8 --- include/class_ldap.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)."..."; } -- 2.30.2