Revert [17663]. fixes #17131

git-svn-id: https://develop.svn.wordpress.org/trunk@18119 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2011-06-02 20:03:27 +00:00
parent 49c59980ae
commit 4f8c05a1cb

View File

@ -286,7 +286,7 @@ class wp_xmlrpc_server extends IXR_Server {
* @since 2.6.0
*/
function initialise_blog_option_info( ) {
global $wp_version, $content_width;
global $wp_version;
$this->blog_options = array(
// Read only options
@ -305,11 +305,6 @@ class wp_xmlrpc_server extends IXR_Server {
'readonly' => true,
'option' => 'siteurl'
),
'content_width' => array(
'desc' => __( 'Content Width' ),
'readonly' => true,
'value' => isset( $content_width ) ? (int) $content_width : 0,
),
// Updatable options
'time_zone' => array(