Make WordPress Core

Changes between Initial Version and Version 15 of Ticket #14867


Ignore:
Timestamp:
08/27/2013 07:55:26 PM (12 years ago)
Author:
johnbillion
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14867

    • Property Status changed from new to reopened
    • Property Cc adambackstrom added
    • Property Milestone changed from Awaiting Review to Future Release
    • Property Keywords has-patch added
  • Ticket #14867 – Description

    initial v15  
    11Two 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.
    22
    3 
     3{{{
    44function get_blogaddress_by_id( $blog_id ) {
    55        $protocol = is_ssl() ? 'https://' : 'http://';
     
    3030        return esc_url( $url );
    3131}
     32}}}