~canonical-sysadmins/wordpress/4.1

« back to all changes in this revision

Viewing changes to wp-includes/class-wp.php

  • Committer: Nick Moffitt
  • Date: 2015-01-15 11:05:37 UTC
  • mfrom: (1.1.1 wp4-upstream)
  • Revision ID: nick.moffitt@canonical.com-20150115110537-8bp1y42eyg0jsa7c
Tags: 4.1
MergeĀ upstreamĀ versionĀ 4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
                                                preg_match("#^$match#", urldecode($request_match), $matches) ) {
206
206
 
207
207
                                                if ( $wp_rewrite->use_verbose_page_rules && preg_match( '/pagename=\$matches\[([0-9]+)\]/', $query, $varmatch ) ) {
208
 
                                                        // this is a verbose page match, lets check to be sure about it
 
208
                                                        // This is a verbose page match, let's check to be sure about it.
209
209
                                                        if ( ! get_page_by_path( $matches[ $varmatch[1] ] ) )
210
210
                                                                continue;
211
211
                                                }
532
532
        /**
533
533
         * Set up the Loop based on the query variables.
534
534
         *
535
 
         * @uses WP::$query_vars
536
535
         * @since 2.0.0
537
536
         */
538
537
        public function query_posts() {