Revert [17663]. fixes #17131
git-svn-id: http://svn.automattic.com/wordpress/trunk@18119 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e62e01b928
commit
d92ecb674e
|
@ -286,7 +286,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
* @since 2.6.0
|
* @since 2.6.0
|
||||||
*/
|
*/
|
||||||
function initialise_blog_option_info( ) {
|
function initialise_blog_option_info( ) {
|
||||||
global $wp_version, $content_width;
|
global $wp_version;
|
||||||
|
|
||||||
$this->blog_options = array(
|
$this->blog_options = array(
|
||||||
// Read only options
|
// Read only options
|
||||||
|
@ -305,11 +305,6 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
'readonly' => true,
|
'readonly' => true,
|
||||||
'option' => 'siteurl'
|
'option' => 'siteurl'
|
||||||
),
|
),
|
||||||
'content_width' => array(
|
|
||||||
'desc' => __( 'Content Width' ),
|
|
||||||
'readonly' => true,
|
|
||||||
'value' => isset( $content_width ) ? (int) $content_width : 0,
|
|
||||||
),
|
|
||||||
|
|
||||||
// Updatable options
|
// Updatable options
|
||||||
'time_zone' => array(
|
'time_zone' => array(
|
||||||
|
|
Loading…
Reference in New Issue