Rewrite: Use same delimiter in url_to_postid() we use in WP::parse_request().
props stevenkword. fixes #23587. Built from https://develop.svn.wordpress.org/trunk@27835 git-svn-id: http://core.svn.wordpress.org/trunk@27669 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
525b9145f8
commit
bc12ccf41b
|
@ -362,7 +362,7 @@ function url_to_postid($url) {
|
|||
if ( !empty($url) && ($url != $request) && (strpos($match, $url) === 0) )
|
||||
$request_match = $url . '/' . $request;
|
||||
|
||||
if ( preg_match("!^$match!", $request_match, $matches) ) {
|
||||
if ( preg_match("#^$match#", $request_match, $matches) ) {
|
||||
|
||||
if ( $wp_rewrite->use_verbose_page_rules && preg_match( '/pagename=\$matches\[([0-9]+)\]/', $query, $varmatch ) ) {
|
||||
// this is a verbose page match, lets check to be sure about it
|
||||
|
|
Loading…
Reference in New Issue