From 89d92f4a247c8dd21f0a2d00474251c97859a651 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 20 Apr 2014 00:29:05 -0700 Subject: [PATCH] admin web: show PHP warnings --- html/inc/util_ops.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/html/inc/util_ops.inc b/html/inc/util_ops.inc index 36063d1f4d..adfdaff784 100644 --- a/html/inc/util_ops.inc +++ b/html/inc/util_ops.inc @@ -16,6 +16,10 @@ // You should have received a copy of the GNU Lesser General Public License // along with BOINC. If not, see . +error_reporting(E_ALL); +ini_set('display_errors', true); +ini_set('display_startup_errors', true); + require_once("../inc/db_ops.inc"); require_once("../inc/util.inc"); require_once("../project/project.inc");