Changeset 20715
- Timestamp:
- 05/03/2012 04:41:59 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/meta-boxes.php
r20667 r20715 666 666 <li class="hide-if-no-js"><a href="#categories-pop"><?php _e( 'Most Used' ); ?></a></li> 667 667 </ul> 668 668 669 669 <div id="categories-all" class="tabs-panel"> 670 670 <ul id="categorychecklist" class="list:category categorychecklist form-no-clear"> … … 677 677 </ul> 678 678 </div> 679 679 680 680 <div id="categories-pop" class="tabs-panel" style="display: none;"> 681 681 <ul id="categorychecklist-pop" class="categorychecklist form-no-clear"> … … 683 683 </ul> 684 684 </div> 685 685 686 686 <div id="category-adder" class="wp-hidden-children"> 687 687 <h4><a id="category-add-toggle" href="#category-add"><?php _e( '+ Add New Category' ); ?></a></h4> -
trunk/wp-admin/includes/post.php
r20594 r20715 748 748 $post = & get_post( $post_ID, ARRAY_A ); 749 749 $content = $post['post_content']; 750 750 751 751 // quick sanity check, don't run if no pretty permalinks or post is not published 752 752 if ( !get_option('permalink_structure') || $post['post_status'] != 'publish' ) -
trunk/wp-admin/includes/screen.php
r20625 r20715 810 810 if ( $this->get_option( 'layout_columns' ) ) { 811 811 $this->columns = (int) get_user_option("screen_layout_$this->id"); 812 812 813 813 if ( ! $this->columns && $this->get_option( 'layout_columns', 'default' ) ) 814 814 $this->columns = $this->get_option( 'layout_columns', 'default' ); -
trunk/wp-admin/includes/update.php
r20438 r20715 224 224 return array(); 225 225 226 $update_themes = array(); 226 $update_themes = array(); 227 227 foreach ( $current->response as $stylesheet => $data ) { 228 228 $update_themes[ $stylesheet ] = wp_get_theme( $stylesheet ); -
trunk/wp-admin/index.php
r20433 r20715 92 92 '<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>' 93 93 ); 94 94 95 95 include (ABSPATH . 'wp-admin/admin-header.php'); 96 96 -
trunk/wp-admin/install.php
r20700 r20715 164 164 165 165 if ( ! is_string( $wpdb->base_prefix ) || '' === $wpdb->base_prefix ) { 166 display_header(); 166 display_header(); 167 167 die( '<h1>' . __( 'Configuration Error' ) . '</h1><p>' . __( 'Your <code>wp-config.php</code> file has an empty database table prefix, which is not supported.' ) . '</p></body></html>' ); 168 168 } -
trunk/wp-includes/class-phpmailer.php
r19849 r20715 1644 1644 set_magic_quotes_runtime(0); 1645 1645 } else { 1646 ini_set('magic_quotes_runtime', 0); 1646 ini_set('magic_quotes_runtime', 0); 1647 1647 } 1648 1648 } … … 1653 1653 set_magic_quotes_runtime($magic_quotes); 1654 1654 } else { 1655 ini_set('magic_quotes_runtime', $magic_quotes); 1655 ini_set('magic_quotes_runtime', $magic_quotes); 1656 1656 } 1657 1657 } -
trunk/wp-includes/class-simplepie.php
r19891 r20715 2776 2776 function get_latitude() 2777 2777 { 2778 2778 2779 2779 if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'lat')) 2780 2780 { -
trunk/wp-includes/class-wp-atom-server.php
r20215 r20715 347 347 $post_excerpt = ''; 348 348 $pubtimes = ''; 349 349 350 350 if ( isset( $entry->title ) && is_array( $entry->title ) && !empty( $entry->title[1] ) ) 351 351 $post_title = (string) $entry->title[1]; … … 356 356 if ( !empty( $entry->published ) ) 357 357 $pubtimes = (string) $entry->published; 358 358 359 359 $pubtimes = $this->get_publish_time( $pubtimes ); 360 360 -
trunk/wp-includes/class-wp-theme.php
r20668 r20715 373 373 * 374 374 * Author, Author Name, Author URI, and Description did not previously return 375 * translated data. We are doing so now as it is safe to do. However, as 375 * translated data. We are doing so now as it is safe to do. However, as 376 376 * Name and Title could have been used as the key for get_themes(), both remain 377 377 * untranslated for back compatibility. This means that ['Name'] is not ideal, -
trunk/wp-includes/class-wp-xmlrpc-server.php
r20714 r20715 3276 3276 if ( ! $post_data ) 3277 3277 return new IXR_Error( 404, __( 'Invalid post ID.' ) ); 3278 3278 3279 3279 if ( !current_user_can( 'edit_post', $post_ID ) ) 3280 3280 return new IXR_Error( 401, __( 'Sorry, you cannot edit this post.' ) ); -
trunk/wp-includes/deprecated.php
r20684 r20715 2997 2997 function clean_pre($matches) { 2998 2998 _deprecated_function( __FUNCTION__, '3.4' ); 2999 2999 3000 3000 if ( is_array($matches) ) 3001 3001 $text = $matches[1] . $matches[2] . "</pre>"; -
trunk/wp-includes/functions.php
r20640 r20715 3687 3687 3688 3688 $ua = $_SERVER['HTTP_USER_AGENT']; 3689 3689 3690 3690 if ( strpos($ua, 'iPhone') !== false 3691 3691 || strpos($ua, 'iPad') !== false
Note: See TracChangeset
for help on using the changeset viewer.