From: hickert Date: Mon, 30 Jun 2008 11:49:43 +0000 (+0000) Subject: Added missing ldap fix to renamen_dn function in class_ldap X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f561e57b4de003f1526cd45612b72058657b27ea;p=gosa.git Added missing ldap fix to renamen_dn function in class_ldap git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11476 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_ldap.inc b/gosa-core/include/class_ldap.inc index 7ff9cb8ac..6af377218 100644 --- a/gosa-core/include/class_ldap.inc +++ b/gosa-core/include/class_ldap.inc @@ -451,6 +451,9 @@ class LDAP{ */ function rename_dn($source,$dest) { + $source = LDAP::fix($source); + $dest = LDAP::fix($dest); + /* Check if source and destination are the same entry */ if(strtolower($source) == strtolower($dest)){ trigger_error("Source and destination can't be the same entry.");