Make WordPress Core

Ticket #41902: 41902_2.patch

File 41902_2.patch, 620 bytes (added by sasagar, 7 years ago)

added the

  • wp-load.php

     
    2121        define( 'ABSPATH', dirname( __FILE__ ) . '/' );
    2222}
    2323
     24/*
     25 * Initialize error reporting to a known set of levels.
     26 *
     27 * This will be adapted in wp-includes/load.php based on the WP_DEBUG setting.
     28 * @see http://php.net/manual/en/errorfunc.constants.php List of known error levels.
     29 */
    2430error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
    2531
    2632/*