From 559e5d7bd40e5c4f8575e4abb78d8e30ec1bc77e Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sat, 8 Aug 2015 09:33:17 +0200 Subject: [PATCH] Fix unintentional error_reporting change --- program/lib/Roundcube/bootstrap.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/program/lib/Roundcube/bootstrap.php b/program/lib/Roundcube/bootstrap.php index 7acd4a4d3..2e5d9e678 100644 --- a/program/lib/Roundcube/bootstrap.php +++ b/program/lib/Roundcube/bootstrap.php @@ -25,8 +25,7 @@ */ $config = array( -// 'error_reporting' => E_ALL & ~E_NOTICE & ~E_STRICT, - 'error_reporting' => E_STRICT, + 'error_reporting' => E_ALL & ~E_NOTICE & ~E_STRICT, // Some users are not using Installer, so we'll check some // critical PHP settings here. Only these, which doesn't provide // an error/warning in the logs later. See (#1486307).