mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-16 19:46:21 +00:00
Turn down error reporting.
git-svn-id: http://svn.automattic.com/wordpress/trunk@692 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c7fa4903d1
commit
9b09572d57
@ -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';
|
||||
|
Loading…
x
Reference in New Issue
Block a user