summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d1bac8a)
raw | patch | inline | side by side (parent: d1bac8a)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 30 Jun 2008 11:49:43 +0000 (11:49 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 30 Jun 2008 11:49:43 +0000 (11:49 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11476 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_ldap.inc | patch | blob | history |
index 7ff9cb8ac683143b11af81e96b243da7c28c44be..6af377218add9ef4562a5ccf76858426a92b4d81 100644 (file)
*/
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.");