diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-02-14 16:32:12 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-02-14 16:32:12 +0100 |
commit | 9dd9dd531d7257849b50f1a0762b201bfb225a1f (patch) | |
tree | bc00cab335963f1dbfa343c5b136fa8d6e9b4a6f /install.php | |
parent | a635c931ff8aa79728d93a4835e06a75e8f90be8 (diff) |
install.php: redirect perl errors to stdout
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
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") { |