Code

Fixed tag output
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 May 2006 07:14:02 +0000 (07:14 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 May 2006 07:14:02 +0000 (07:14 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3309 594d385d-05f5-0310-b6e9-bd551577e9d8

include/class_plugin.inc

index bd30dfd7b02e47a170cc1292ccdcddb4b97e69d2..f9ffda6793430a61e48c062829d0b29626b92acb 100644 (file)
@@ -914,14 +914,14 @@ class plugin
       $attrs= $ldap->fetch();
       if(isset($attrs['gosaUnitTag'][0]) && $attrs['gosaUnitTag'][0] == $tag){
         if ($show) {
-          echo sprintf(_("Processing: Object '%s' is already tagged"), $dn)."<br>";
+          echo sprintf(_("Object '%s' is already tagged"), @LDAP::fix($dn))."<br>";
           flush();
         }
         return;
       }
       if (count($attrs)){
         if ($show){
-          echo sprintf(_("Processing: Adding tag (%s) to object '%s'"), $tag,$dn)."<br>";
+          echo sprintf(_("Adding tag (%s) to object '%s'"), $tag, @LDAP::fix($dn))."<br>";
           flush();
         }
         $nattrs= array("gosaUnitTag" => $this->gosaUnitTag);
@@ -950,7 +950,7 @@ class plugin
       }
       if (count($attrs)){
         if ($show){
-          echo sprintf(_("Processing: Removing tag from object '%s'"), $dn)."<br>";
+          echo sprintf(_("Removing tag from object '%s'"), @LDAP::fix($dn))."<br>";
           flush();
         }
         $nattrs= array("gosaUnitTag" => array());