Code

Fixed missing images problem in group headpage
[gosa.git] / plugins / admin / users / tabs_user.inc
index f19f5b856bdadb550657760e9bdbcd172cf186d2..899e12d18a1acb7f42e7e44bb7fb36e4578a2ada 100644 (file)
@@ -90,7 +90,7 @@ class usertabs extends tabs
        * If you changed one of the "Name" / "Givenname" attributes to lower or upper case, like "test" to "Test", (in DNMODE=cn)
        *  the old_dn and new dn were different. cn=test ... cn=Test ...
        * The following code decided to move the entry from old_dn to new_dn. (Because they differ)
-       * But the ldap functions are not case sensitive and so the function plugin::move() quits with 
+       * But the ldap attribute cn is not case sensitive and the function plugin::move() quits with 
        *  an error, because source and destination dn are both the same (for ldap, but not for php).
        * This fix allow you to change the givenname or name attributes.
        */
@@ -112,7 +112,6 @@ class usertabs extends tabs
         $this->dn= $new_dn;
       }
     }
-    print_a($this);
     return tabs::save();
   }