From d9b9d7b5d141cb215f27c5f8fc7fce04b4613161 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 18 Aug 2008 09:35:43 +0000 Subject: [PATCH] Fixecd exec call. -Accidentally added reference test. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@12231 594d385d-05f5-0310-b6e9-bd551577e9d8 --- include/class_plugin.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/class_plugin.inc b/include/class_plugin.inc index a17378c87..8c57c4419 100644 --- a/include/class_plugin.inc +++ b/include/class_plugin.inc @@ -561,7 +561,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); @@ -600,7 +600,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); @@ -639,7 +639,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