From: Fomafix Date: Mon, 4 Aug 2014 15:53:56 +0000 (+0000) Subject: Update links for software homepages X-Git-Tag: 1.31.0-rc.0~14582^2 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=f11e6a344c12bdf7e788da98902e1855f7e5694c;p=lhc%2Fweb%2Fwiklou.git Update links for software homepages Avoid redirects. This is the current situation: * MySQL: http://www.mysql.com/ redirects to https://www.mysql.com/ * MariaDB: http://mariadb.org/ redirects to https://mariadb.org/ * Percona: https://www.percona.com/ redirects to http://www.percona.com/ * PostgreSQL: https://www.postgresql.org/ redirects to http://www.postgresql.org/ * Oracle: https://www.oracle.com/ redirects to http://www.oracle.com/ * SQLite: http://www.sqlite.org/ redirects to https://www.sqlite.org/ * Microsoft: Supports http://www.microsoft.com/ and https://www.microsoft.com/ and http://microsoft.com/ and https://microsoft.com/ redirects to https://www.microsoft.com/ * PHP: http://www.php.net/ redirects to http://php.net/ and https://www.php.net/ redirects to https://php.net/ Change-Id: I3da95a22386cc5e479ac1365a6680bf54bdcd81a --- diff --git a/includes/specials/SpecialVersion.php b/includes/specials/SpecialVersion.php index 8ca9e231a8..50929a9ba6 100644 --- a/includes/specials/SpecialVersion.php +++ b/includes/specials/SpecialVersion.php @@ -212,7 +212,7 @@ class SpecialVersion extends SpecialPage { $software = array(); $software['[https://www.mediawiki.org/ MediaWiki]'] = self::getVersionLinked(); $phpKey = wfIsHHVM() ? '[http://hhvm.com/ HHVM]' : - '[http://www.php.net/ PHP]'; + '[https://php.net/ PHP]'; $software[$phpKey] = PHP_VERSION . " (" . PHP_SAPI . ")"; $software[$dbr->getSoftwareLink()] = $dbr->getServerInfo(); diff --git a/languages/i18n/en.json b/languages/i18n/en.json index d506ad2371..55c3f0a99d 100644 --- a/languages/i18n/en.json +++ b/languages/i18n/en.json @@ -3261,13 +3261,13 @@ "version-software": "Installed software", "version-software-product": "Product", "version-software-version": "Version", - "version-db-mysql-url": "http://www.mysql.com/", - "version-db-mariadb-url": "http://mariadb.org/", + "version-db-mysql-url": "https://www.mysql.com/", + "version-db-mariadb-url": "https://mariadb.org/", "version-db-percona-url": "http://www.percona.com/software/percona-server", "version-db-postgres-url": "http://www.postgresql.org/", "version-db-oracle-url": "http://www.oracle.com/database/", - "version-db-sqlite-url": "http://www.sqlite.org/", - "version-db-mssql-url": "http://www.microsoft.com/sql/", + "version-db-sqlite-url": "https://www.sqlite.org/", + "version-db-mssql-url": "https://www.microsoft.com/sql/", "version-entrypoints": "Entry point URLs", "version-entrypoints-header-entrypoint": "Entry point", "version-entrypoints-header-url": "URL",