Changeset 17663
- Timestamp:
- 04/20/2011 03:26:38 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-xmlrpc-server.php
r17651 r17663 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( … … 305 305 'readonly' => true, 306 306 'option' => 'siteurl' 307 ), 308 'content_width' => array( 309 'desc' => __( 'Content Width' ), 310 'readonly' => true, 311 'value' => isset( $content_width ) ? (int) $content_width : 0, 307 312 ), 308 313
Note: See TracChangeset
for help on using the changeset viewer.