Changeset 33736 for trunk/src/wp-includes/link-template.php
- Timestamp:
- 08/25/2015 09:02:14 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r33717 r33736 2733 2733 */ 2734 2734 function get_home_url( $blog_id = null, $path = '', $scheme = null ) { 2735 global $pagenow; 2736 2735 2737 $orig_scheme = $scheme; 2736 2738 … … 2744 2746 2745 2747 if ( ! in_array( $scheme, array( 'http', 'https', 'relative' ) ) ) { 2746 if ( is_ssl() && ! is_admin() && 'wp-login.php' !== $ GLOBALS['pagenow'])2748 if ( is_ssl() && ! is_admin() && 'wp-login.php' !== $pagenow ) 2747 2749 $scheme = 'https'; 2748 2750 else
Note: See TracChangeset
for help on using the changeset viewer.