Making WordPress.org

Ticket #3120: 3120-api-wordpress-org.patch

File 3120-api-wordpress-org.patch, 1.5 KB (added by adnan.limdi, 7 years ago)

Add secure link on WordPress org site

  • browsers.php

     
    3232                        'name' => 'Internet Explorer',
    3333                        'wikipedia' => 'Internet_Explorer',
    3434                        'normalized' => 1, // just first number
    35                         'url' => 'http://www.microsoft.com/windows/internet-explorer/',
    36                         'img_src' => $http . 'ie.png',
     35                        'url' => 'https://www.microsoft.com/windows/internet-explorer/',
     36                        'img_src' => $http . 'ie.png', 
    3737                        'img_src_ssl' => $https . 'ie.png',
    3838                ),
    3939                'Firefox' => (object) array(
     
    4848                        'name' => 'Safari',
    4949                        'wikipedia' => 'Safari',
    5050                        'normalized' => 1.5, // include second number if non-zero
    51                         'url' => 'http://www.apple.com/safari/',
     51                        'url' => 'https://www.apple.com/safari/',
    5252                        'img_src' => $http . 'safari.png',
    5353                        'img_src_ssl' => $https . 'safari.png',
    5454                ),
     
    5656                        'name' => 'Opera',
    5757                        'wikipedia' => 'Opera',
    5858                        'normalized' => 2, // include second number
    59                         'url' => 'http://www.opera.com/',
     59                        'url' => 'https://www.opera.com/',
    6060                        'img_src' => $http . 'opera.png',
    6161                        'img_src_ssl' => $https . 'opera.png',
    6262                ),
     
    6464                        'name' => 'Google Chrome',
    6565                        'wikipedia' => 'Google_Chrome',
    6666                        'normalized' => 1, // just first number
    67                         'url' => 'http://www.google.com/chrome',
     67                        'url' => 'https://www.google.com/chrome',
    6868                        'img_src' => $http . 'chrome.png',
    6969                        'img_src_ssl' => $https . 'chrome.png',
    7070                ),