Ticket #17131: 17131.diff
File 17131.diff, 753 bytes (added by , 14 years ago) |
---|
-
wp-includes/class-wp-xmlrpc-server.php
286 286 * @since 2.6.0 287 287 */ 288 288 function initialise_blog_option_info( ) { 289 global $wp_version ;289 global $wp_version, $content_width; 290 290 291 291 $this->blog_options = array( 292 292 // Read only options … … 305 305 'readonly' => true, 306 306 'option' => 'siteurl' 307 307 ), 308 'content_width' => array( 309 'desc' => __( 'Content Width' ), 310 'readonly' => true, 311 'value' => isset( $content_width ) ? (int) $content_width : 0, 312 ), 308 313 309 314 // Updatable options 310 315 'time_zone' => array(