Turn down error reporting.
git-svn-id: https://develop.svn.wordpress.org/trunk@692 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5f40f6404a
commit
68c59dff3d
@ -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';
|
||||||
|
Loading…
Reference in New Issue
Block a user