Make WordPress Core

Ticket #21020: 21020.diff

File 21020.diff, 2.2 KB (added by duck_, 12 years ago)
  • wp-includes/rewrite.php

     
    15371537                $registration_pages['.*wp-register.php$'] = $this->index . '?register=true'; // Deprecated
    15381538
    15391539                // Post
    1540                 $post_rewrite = $this->generate_rewrite_rules( $this->permalink_structure, EP_PERMALINK, false, true, false, false );
     1540                $post_rewrite = $this->generate_rewrite_rules( $this->permalink_structure, EP_PERMALINK, false );
    15411541                $post_rewrite = apply_filters('post_rewrite_rules', $post_rewrite);
    15421542
    15431543                // Date
  • wp-includes/canonical.php

     
    100100                }
    101101
    102102                if ( ! $redirect_url ) {
    103                         if ( $redirect_url = redirect_guess_404_permalink( $requested_url ) ) {
     103                        if ( $redirect_url = redirect_guess_404_permalink() ) {
    104104                                $redirect['query'] = _remove_qs_args_if_not_in_url( $redirect['query'], array( 'page', 'feed', 'p', 'page_id', 'attachment_id', 'pagename', 'name', 'post_type' ), $redirect_url );
    105105                        }
    106106                }
     
    461461}
    462462
    463463/**
    464  * Attempts to guess the correct URL from the current URL (that produced a 404) or
    465  * the current query variables.
     464 * Attempts to guess the correct URL based on query vars
    466465 *
    467466 * @since 2.3.0
    468467 * @uses $wpdb
    469468 *
    470  * @param string $current_url Optional. The URL that has 404'd.
    471469 * @return bool|string The correct URL if one is found. False on failure.
    472470 */
    473 function redirect_guess_404_permalink( $current_url = '' ) {
     471function redirect_guess_404_permalink() {
    474472        global $wpdb, $wp_rewrite;
    475473
    476         if ( ! empty( $current_url ) )
    477                 $parsed_url = @parse_url( $current_url );
    478 
    479         // Attempt to redirect bare category slugs if the permalink structure starts
    480         // with the %category% tag.
    481         if ( isset( $parsed_url['path'] )
    482                 && preg_match( '#^[^%]+%category%#', $wp_rewrite->permalink_structure )
    483                 && $cat = get_category_by_path( $parsed_url['path'] )
    484         ) {
    485                 if ( ! is_wp_error( $cat ) )
    486                         return get_term_link( $cat );
    487         }
    488 
    489474        if ( get_query_var('name') ) {
    490475                $where = $wpdb->prepare("post_name LIKE %s", like_escape( get_query_var('name') ) . '%');
    491476