Changes between Initial Version and Version 15 of Ticket #14867
- Timestamp:
- 08/27/2013 07:55:26 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14867
-
Property
Status
changed from
new
toreopened
- Property Cc adambackstrom added
-
Property
Milestone
changed from
Awaiting Review
toFuture Release
- Property Keywords has-patch added
-
Property
Status
changed from
-
Ticket #14867 – Description
initial v15 1 1 Two functions in ms-blogs.php have issues due to hard-coding "http://" versus using the is_ssl() check. I have corrected them below. Just copy and paste these over the ones in your ms-blogs.php. 2 2 3 3 {{{ 4 4 function get_blogaddress_by_id( $blog_id ) { 5 5 $protocol = is_ssl() ? 'https://' : 'http://'; … … 30 30 return esc_url( $url ); 31 31 } 32 }}}