From 7f9ceceddd3392316fe7b7ab0765ed122b5601cc Mon Sep 17 00:00:00 2001 From: cajus Date: Tue, 27 Nov 2007 14:41:04 +0000 Subject: [PATCH] Fixed problem with decoding. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@7915 594d385d-05f5-0310-b6e9-bd551577e9d8 --- include/functions.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2