Fix some notices when pinging

git-svn-id: https://develop.svn.wordpress.org/trunk@16069 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2010-10-29 07:07:28 +00:00
parent c8366c5966
commit 743606fac1
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}

View File

@ -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);
}