Ticket #3120: 3120-api-wordpress-org.patch
File 3120-api-wordpress-org.patch, 1.5 KB (added by , 7 years ago) |
---|
-
browsers.php
32 32 'name' => 'Internet Explorer', 33 33 'wikipedia' => 'Internet_Explorer', 34 34 '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', 37 37 'img_src_ssl' => $https . 'ie.png', 38 38 ), 39 39 'Firefox' => (object) array( … … 48 48 'name' => 'Safari', 49 49 'wikipedia' => 'Safari', 50 50 'normalized' => 1.5, // include second number if non-zero 51 'url' => 'http ://www.apple.com/safari/',51 'url' => 'https://www.apple.com/safari/', 52 52 'img_src' => $http . 'safari.png', 53 53 'img_src_ssl' => $https . 'safari.png', 54 54 ), … … 56 56 'name' => 'Opera', 57 57 'wikipedia' => 'Opera', 58 58 'normalized' => 2, // include second number 59 'url' => 'http ://www.opera.com/',59 'url' => 'https://www.opera.com/', 60 60 'img_src' => $http . 'opera.png', 61 61 'img_src_ssl' => $https . 'opera.png', 62 62 ), … … 64 64 'name' => 'Google Chrome', 65 65 'wikipedia' => 'Google_Chrome', 66 66 'normalized' => 1, // just first number 67 'url' => 'http ://www.google.com/chrome',67 'url' => 'https://www.google.com/chrome', 68 68 'img_src' => $http . 'chrome.png', 69 69 'img_src_ssl' => $https . 'chrome.png', 70 70 ),