Changeset 16069 for trunk/wp-includes/rewrite.php
- Timestamp:
- 10/29/2010 07:07:28 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rewrite.php
r15989 r16069 300 300 // Chop off /path/to/blog 301 301 $home_path = parse_url(home_url()); 302 $home_path = $home_path['path'];302 $home_path = isset( $home_path['path'] ) ? $home_path['path'] : '' ; 303 303 $url = str_replace($home_path, '', $url); 304 304 }
Note: See TracChangeset
for help on using the changeset viewer.