From 5effcd6dc27f826bbfd0ee7b2bd5b9ee64a8008c Mon Sep 17 00:00:00 2001 From: Cameron Date: Fri, 15 Mar 2013 05:50:44 -0700 Subject: [PATCH] Fix for install routine issue. Suppress any errors when not in debug mode. --- install_.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_.php b/install_.php index 68006251d..0310487bb 100644 --- a/install_.php +++ b/install_.php @@ -39,7 +39,7 @@ define("E107_INSTALL",TRUE); if($_SERVER['QUERY_STRING'] != "debug") { - error_reporting(E_ALL ^ E_NOTICE); //3rd Party Plugins may cause PHP Notices at the conclusion of installation. + error_reporting(0); // suppress all errors unless debugging. } else { @@ -1882,4 +1882,4 @@ function template_data() return $data; } -?> \ No newline at end of file +