From 9dd9dd531d7257849b50f1a0762b201bfb225a1f Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 14 Feb 2012 16:32:12 +0100 Subject: install.php: redirect perl errors to stdout Signed-off-by: Florian Pritz --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index a542de0cc..de0f266f0 100644 --- a/install.php +++ b/install.php @@ -28,7 +28,7 @@ $buf == "works" || $errors .= "passthru() failed\n"; // test perl HTML::FromANSI ob_start(); -passthru("perl ".FCPATH."/scripts/install_helper.pl"); +passthru("perl 2>&1 ".FCPATH."/scripts/install_helper.pl"); $buf = ob_get_contents(); ob_end_clean(); if ($buf != "works") { -- cgit v1.2.3-24-g4f1b