Changeset 19017 for trunk/wp-includes/rewrite.php
- Timestamp:
- 10/19/2011 10:49:45 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rewrite.php
r18715 r19017 315 315 if ( preg_match("!^$match!", $request_match, $matches) ) { 316 316 317 if ( $wp_rewrite->use_verbose_page_rules && preg_match( '/pagename=\$ ([^&\[]+)\[([0-9]+)\]/', $query, $varmatch ) ) {317 if ( $wp_rewrite->use_verbose_page_rules && preg_match( '/pagename=\$matches\[([0-9]+)\]/', $query, $varmatch ) ) { 318 318 // this is a verbose page match, lets check to be sure about it 319 if ( ! get_page_by_path( $ {$varmatch[1]}[$varmatch[2]] ) )319 if ( ! get_page_by_path( $matches[ $varmatch[1] ] ) ) 320 320 continue; 321 321 }
Note: See TracChangeset
for help on using the changeset viewer.