From 00cfb6bd8220fc5f15881a08e990c9cb83bed895 Mon Sep 17 00:00:00 2001 From: westi Date: Fri, 29 Oct 2010 07:07:28 +0000 Subject: [PATCH] Fix some notices when pinging git-svn-id: http://svn.automattic.com/wordpress/trunk@16069 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- wp-includes/rewrite.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 5499629d3..216ba4b99 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1206,7 +1206,7 @@ function do_enclose( $content, $post_ID ) { continue; if ( isset( $test['query'] ) ) $post_links[] = $link_test; - elseif ( $test['path'] != '/' && $test['path'] != '' ) + elseif ( isset($test['path']) && ( $test['path'] != '/' ) && ($test['path'] != '' ) ) $post_links[] = $link_test; } } diff --git a/wp-includes/rewrite.php b/wp-includes/rewrite.php index de9ff8906..6a9129295 100644 --- a/wp-includes/rewrite.php +++ b/wp-includes/rewrite.php @@ -299,7 +299,7 @@ function url_to_postid($url) { } else { // Chop off /path/to/blog $home_path = parse_url(home_url()); - $home_path = $home_path['path']; + $home_path = isset( $home_path['path'] ) ? $home_path['path'] : '' ; $url = str_replace($home_path, '', $url); }