Changes from branches/2.7/wp-settings.php at r10434 to trunk/wp-settings.php at r9596
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r10434 r9596 16 16 @ini_set('memory_limit', WP_MEMORY_LIMIT); 17 17 18 set_magic_quotes_runtime(0);19 @ini_set('magic_quotes_sybase', 0);20 18 21 19 /** … … 202 200 error_reporting(E_ALL); 203 201 } else { 204 // Unicode Extension is in PHP 6.0 only or do version check when this changes. 205 if ( function_exists('unicode_decode') ) 206 error_reporting( E_ALL ^ E_DEPRECATED ^ E_NOTICE ^ E_USER_NOTICE ^ E_STRICT ); 207 else if ( defined( 'E_DEPRECATED' ) ) // Introduced in PHP 5.3 208 error_reporting( E_ALL ^ E_DEPRECATED ^ E_NOTICE ^ E_USER_NOTICE ); 209 else 210 error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE); 202 error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE); 211 203 } 212 204
Note: See TracChangeset
for help on using the changeset viewer.