From 5806850bce9810432cdb3a78dcca1d4771829bed Mon Sep 17 00:00:00 2001 From: f0o Date: Thu, 1 Oct 2015 15:20:46 +0000 Subject: [PATCH] Soft-Fail if PEAR doesnt exist --- html/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/install.php b/html/install.php index 8dbfde4c4..2890b83ef 100644 --- a/html/install.php +++ b/html/install.php @@ -216,7 +216,7 @@ if($stage == 0) { } // Check for pear install - require_once 'System.php'; + @include_once 'System.php'; if(class_exists('System') === true) { $ext_loaded = 'yes';