Make WordPress Core


Ignore:
Timestamp:
10/29/2010 07:07:28 AM (15 years ago)
Author:
westi
Message:

Fix some notices when pinging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/rewrite.php

    r15989 r16069  
    300300        // Chop off /path/to/blog
    301301        $home_path = parse_url(home_url());
    302         $home_path = $home_path['path'];
     302        $home_path = isset( $home_path['path'] ) ? $home_path['path'] : '' ;
    303303        $url = str_replace($home_path, '', $url);
    304304    }
Note: See TracChangeset for help on using the changeset viewer.