Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -69,12 +69,6 @@ |
70 | 70 | $wgServerName = 'localhost'; |
71 | 71 | } |
72 | 72 | |
73 | | -# Before we put http:// and other things onto it, need to |
74 | | -# wrap IPv6 in []. Bug 14977. |
75 | | -if ( IP::isIPv6( $wgServerName ) ) { |
76 | | - $wgServerName = '[' . $wgServerName . ']'; |
77 | | -} |
78 | | - |
79 | 73 | # check if server use https: |
80 | 74 | $wgProto = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http'; |
81 | 75 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -45,8 +45,6 @@ |
46 | 46 | * (bug 14954) Fix regression in Modern and Simple skins |
47 | 47 | * Recursion loop check added to Categoryfinder class |
48 | 48 | * Fixed few performance troubles of large job queue processing |
49 | | -* (bug 14977) Installations on servers using IPv6 addresses for $wgServer |
50 | | - were largely unusable because $wgServer didn't wrap the IP in brackets. |
51 | 49 | |
52 | 50 | === API changes in 1.14 === |
53 | 51 | |