From: cajus Date: Tue, 27 Nov 2007 14:41:04 +0000 (+0000) Subject: Fixed problem with decoding. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7f9ceceddd3392316fe7b7ab0765ed122b5601cc;p=gosa.git Fixed problem with decoding. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@7915 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/functions.inc b/include/functions.inc index dab51ac86..216d04149 100644 --- a/include/functions.inc +++ b/include/functions.inc @@ -2309,7 +2309,7 @@ function get_base_from_hook($dn, $attrib) $command= $config->current['BASE_HOOK']; if ($command != ""){ - $command.= " '$dn' $attrib"; + $command.= " '".LDAP::fix($dn)."' $attrib"; if (check_command($command)){ @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute"); exec($command, $output);