Changes in branches/3.1 [17595:17716]
- Location:
- branches/3.1
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/readme.html
r17595 r17716 9 9 <h1 id="logo"> 10 10 <a href="http://wordpress.org/"><img alt="WordPress" src="wp-admin/images/wordpress-logo.png" width="250" height="68" /></a> 11 <br /> Version 3.1. 111 <br /> Version 3.1.2 12 12 </h1> 13 13 <p style="text-align: center">Semantic Personal Publishing Platform</p> -
branches/3.1/wp-admin/includes/class-wp-posts-list-table.php
r17595 r17716 311 311 $posts = $wp_query->posts; 312 312 313 add_filter( 'the_title', 'esc_html' ); 314 313 315 if ( $this->hierarchical_display ) { 314 316 $this->_display_rows_hierarchical( $posts, $this->get_pagenum(), $per_page ); … … 320 322 function _display_rows( $posts ) { 321 323 global $post, $mode; 322 323 add_filter( 'the_title', 'esc_html' );324 324 325 325 // Create array of post IDs. … … 523 523 } 524 524 525 $post->post_title = esc_html( $post->post_title );526 525 $pad = str_repeat( '— ', $level ); 527 526 ?> -
branches/3.1/wp-admin/includes/update-core.php
r17595 r17716 295 295 $required_php_version = '4.3'; 296 296 $required_mysql_version = '4.1.2'; 297 $wp_version = '3.1. 1';297 $wp_version = '3.1.2'; 298 298 $php_compat = version_compare( $php_version, $required_php_version, '>=' ); 299 299 $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' ); -
branches/3.1/wp-admin/press-this.php
r17595 r17716 57 57 } 58 58 // set the post_content and status 59 $quick['post_status'] = isset($_POST['publish']) ? 'publish' : 'draft'; 59 if ( isset( $_POST['publish'] ) && current_user_can( 'publish_posts' ) ) 60 $quick['post_status'] = 'publish'; 61 elseif ( isset( $_POST['review'] ) ) 62 $quick['post_status'] = 'pending'; 63 else 64 $quick['post_status'] = 'draft'; 60 65 $quick['post_content'] = $content; 61 66 // error handling for media_sideload -
branches/3.1/wp-includes/post-template.php
r17595 r17716 1101 1101 $output .= ' selected="selected"'; 1102 1102 $output .= '>'; 1103 $title = esc_html($page->post_title);1104 1103 $title = apply_filters( 'list_pages', $page->post_title ); 1105 $output .= "$pad$title";1104 $output .= $pad . esc_html( $title ); 1106 1105 $output .= "</option>\n"; 1107 1106 } -
branches/3.1/wp-includes/query.php
r17595 r17716 1511 1511 1512 1512 foreach ( $this->tax_query->queries as $tax_query ) { 1513 if ( ' IN' == $tax_query['operator'] ) {1513 if ( 'NOT IN' != $tax_query['operator'] ) { 1514 1514 switch ( $tax_query['taxonomy'] ) { 1515 1515 case 'category': -
branches/3.1/wp-includes/user.php
r17595 r17716 439 439 $this->query_from .= " LEFT OUTER JOIN ( 440 440 SELECT post_author, COUNT(*) as post_count 441 FROM wp_posts441 FROM $wpdb->posts 442 442 $where 443 443 GROUP BY post_author -
branches/3.1/wp-includes/version.php
r17595 r17716 23 23 * @global string $wp_version 24 24 */ 25 $wp_version = '3.1. 1';25 $wp_version = '3.1.2'; 26 26 27 27 /**
Note: See TracChangeset
for help on using the changeset viewer.