Changeset 9506 for trunk/wp-includes/rewrite.php
- Timestamp:
- 11/04/2008 03:22:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rewrite.php
r9300 r9506 1627 1627 1628 1628 $site_root = parse_url(get_option('siteurl')); 1629 $site_root = trailingslashit($site_root['path']); 1629 if ( isset( $site_root['path'] ) ) { 1630 $site_root = trailingslashit($site_root['path']); 1631 } 1630 1632 1631 1633 $home_root = parse_url(get_option('home')); 1632 $home_root = trailingslashit($home_root['path']); 1634 if ( isset( $home_root['path'] ) ) { 1635 $home_root = trailingslashit($home_root['path']); 1636 } 1633 1637 1634 1638 $rules = "<IfModule mod_rewrite.c>\n";
Note: See TracChangeset
for help on using the changeset viewer.