Ticket #19580: 19580.patch
| File 19580.patch, 901 bytes (added by linuxologos, 17 months ago) |
|---|
-
wp-load.php
18 18 * @package WordPress 19 19 */ 20 20 21 /** Define ABSPATH as this file s directory */21 /** Define ABSPATH as this file's directory */ 22 22 define( 'ABSPATH', dirname(__FILE__) . '/' ); 23 23 24 24 error_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 ); … … 30 30 31 31 } elseif ( file_exists( dirname(ABSPATH) . '/wp-config.php' ) && ! file_exists( dirname(ABSPATH) . '/wp-settings.php' ) ) { 32 32 33 /** The config file resides one level above ABSPATH but is not part of another install */33 /** The config file resides one level above ABSPATH but is not part of another install */ 34 34 require_once( dirname(ABSPATH) . '/wp-config.php' ); 35 35 36 36 } else {
