Turn down error reporting.

git-svn-id: https://develop.svn.wordpress.org/trunk@692 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2004-01-02 23:55:40 +00:00
parent 5f40f6404a
commit 68c59dff3d
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,9 @@ $HTTP_HOST = getenv('HTTP_HOST'); /* domain name */
$REMOTE_ADDR = getenv('REMOTE_ADDR'); /* visitor's IP */ $REMOTE_ADDR = getenv('REMOTE_ADDR'); /* visitor's IP */
$HTTP_USER_AGENT = getenv('HTTP_USER_AGENT'); /* visitor's browser */ $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 // Table names
$tableposts = $table_prefix . 'posts'; $tableposts = $table_prefix . 'posts';
$tableusers = $table_prefix . 'users'; $tableusers = $table_prefix . 'users';