From 9b09572d57fd397ef925dcbf390bfb70009fba3d Mon Sep 17 00:00:00 2001 From: saxmatt Date: Fri, 2 Jan 2004 23:55:40 +0000 Subject: [PATCH] Turn down error reporting. git-svn-id: http://svn.automattic.com/wordpress/trunk@692 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-settings.php b/wp-settings.php index e050efa6ea..34c714838c 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -3,6 +3,9 @@ $HTTP_HOST = getenv('HTTP_HOST'); /* domain name */ $REMOTE_ADDR = getenv('REMOTE_ADDR'); /* visitor's IP */ $HTTP_USER_AGENT = getenv('HTTP_USER_AGENT'); /* visitor's browser */ +// Change to E_ALL for development/debugging +error_reporting(E_ALL ^ E_NOTICE); + // Table names $tableposts = $table_prefix . 'posts'; $tableusers = $table_prefix . 'users';