Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-settings.php

    r10434 r9596  
    1616    @ini_set('memory_limit', WP_MEMORY_LIMIT);
    1717
    18 set_magic_quotes_runtime(0);
    19 @ini_set('magic_quotes_sybase', 0);
    2018
    2119/**
     
    202200    error_reporting(E_ALL);
    203201} 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);
    211203}
    212204
Note: See TracChangeset for help on using the changeset viewer.