From 3f87862f25e683716f5294de713791736f4c5bb7 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 18 Aug 2008 09:34:36 +0000 Subject: [PATCH] Fixecd exec call. -Accidentally added reference test. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12230 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_plugin.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gosa-core/include/class_plugin.inc b/gosa-core/include/class_plugin.inc index 2adbf492f..31d5b4baf 100644 --- a/gosa-core/include/class_plugin.inc +++ b/gosa-core/include/class_plugin.inc @@ -636,7 +636,7 @@ class plugin if (check_command($command)){ @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute"); - exec($command,&$arr); + exec($command,$arr); foreach($arr as $str){ @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Result: ".$str); @@ -677,7 +677,7 @@ class plugin if (check_command($command)){ @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__,$command, "Execute"); - exec($command,&$arr); + exec($command,$arr); foreach($arr as $str){ @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Result: ".$str); @@ -719,7 +719,7 @@ class plugin @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Execute"); - exec($command,&$arr); + exec($command,$arr); foreach($arr as $str){ @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__, $command, "Result: ".$str); -- 2.30.2