Ticket #23175: 23175.3.patch
File 23175.3.patch, 2.1 KB (added by , 12 years ago) |
---|
-
wp-admin/load-scripts.php
8 8 error_reporting(0); 9 9 10 10 /** Set ABSPATH for execution */ 11 define( 'ABSPATH', dirname(dirname(__FILE__)) . ' /' );11 define( 'ABSPATH', dirname(dirname(__FILE__)) . '\\' ); 12 12 define( 'WPINC', 'wp-includes' ); 13 13 14 14 /** -
wp-admin/load-styles.php
8 8 error_reporting(0); 9 9 10 10 /** Set ABSPATH for execution */ 11 define( 'ABSPATH', dirname(dirname(__FILE__)) . ' /' );11 define( 'ABSPATH', dirname(dirname(__FILE__)) . '\\' ); 12 12 define( 'WPINC', 'wp-includes' ); 13 13 14 14 /** -
wp-admin/setup-config.php
35 35 * the database class while being wp-content/db.php aware. 36 36 * @ignore 37 37 */ 38 define('ABSPATH', dirname(dirname(__FILE__)).' /');38 define('ABSPATH', dirname(dirname(__FILE__)).'\\'); 39 39 define('WPINC', 'wp-includes'); 40 40 define('WP_CONTENT_DIR', ABSPATH . 'wp-content'); 41 41 define('WP_DEBUG', false); -
wp-config-sample.php
/**
84 84 85 85 /** Absolute path to the WordPress directory. */ 86 86 if ( !defined('ABSPATH') ) 87 define('ABSPATH', dirname(__FILE__) . ' /');87 define('ABSPATH', dirname(__FILE__) . '\\'); 88 88 89 89 /** Sets up WordPress vars and included files. */ 90 90 require_once(ABSPATH . 'wp-settings.php'); -
wp-load.php
19 19 */ 20 20 21 21 /** Define ABSPATH as this file's directory */ 22 define( 'ABSPATH', dirname(__FILE__) . ' /' );22 define( 'ABSPATH', dirname(__FILE__) . '\\' ); 23 23