From 04f0f76f2fa6ec286ea3815e5632dc3facc23732 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 12 Sep 2015 03:41:57 +0200 Subject: [PATCH] shell output on setup script --- db/qq/QI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/qq/QI.php b/db/qq/QI.php index 8c9f993..ce2412b 100644 --- a/db/qq/QI.php +++ b/db/qq/QI.php @@ -25,7 +25,7 @@ class QI { ' --execute="SOURCE '; $result = array(); foreach($files as $file){ - $output = shell_exec($command .$file. '"'); + $output = shell_exec($command .$file. '" 2>&1'); $result[] = array($file,$output);} return $result; }