Changeset 13884 for trunk/wp-includes/link-template.php
- Timestamp:
- 03/29/2010 09:45:31 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r13882 r13884 2038 2038 function network_site_url( $path = '', $scheme = null ) { 2039 2039 global $current_site; 2040 2041 if ( !is_multisite() ) 2042 return site_url($path, $scheme); 2043 2040 2044 $orig_scheme = $scheme; 2041 2045 if ( !in_array($scheme, array('http', 'https')) ) { … … 2076 2080 function network_home_url( $path = '', $scheme = null ) { 2077 2081 global $current_site; 2082 2083 if ( !is_multisite() ) 2084 return home_url($path, $scheme); 2085 2078 2086 $orig_scheme = $scheme; 2079 2087
Note: See TracChangeset
for help on using the changeset viewer.