XML-RPC: Don't rely on `include_path` to include files, use `dirname()` instead.
See #17092. Built from https://develop.svn.wordpress.org/trunk@33459 git-svn-id: http://core.svn.wordpress.org/trunk@33426 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
974c1533ea
commit
5d3fba37f2
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.3-beta4-33458';
|
$wp_version = '4.3-beta4-33459';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
|
@ -26,7 +26,7 @@ if ( isset($HTTP_RAW_POST_DATA) )
|
||||||
$HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
|
$HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
|
||||||
|
|
||||||
/** Include the bootstrap for setting up WordPress environment */
|
/** Include the bootstrap for setting up WordPress environment */
|
||||||
include('./wp-load.php');
|
include( dirname( __FILE__ ) . '/wp-load.php' );
|
||||||
|
|
||||||
if ( isset( $_GET['rsd'] ) ) { // http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html
|
if ( isset( $_GET['rsd'] ) ) { // http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html
|
||||||
header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
|
header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
|
||||||
|
|
Loading…
Reference in New Issue