Changeset 18454
- Timestamp:
- 07/21/2011 09:35:23 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r18448 r18454 2910 2910 function _config_wp_home( $url = '' ) { 2911 2911 if ( defined( 'WP_HOME' ) ) 2912 return WP_HOME;2912 return untrailingslashit( WP_HOME ); 2913 2913 return $url; 2914 2914 } … … 2930 2930 function _config_wp_siteurl( $url = '' ) { 2931 2931 if ( defined( 'WP_SITEURL' ) ) 2932 return WP_SITEURL;2932 return untrailingslashit( WP_SITEURL ); 2933 2933 return $url; 2934 2934 }
Note: See TracChangeset
for help on using the changeset viewer.