Index: trunk/phase3/includes/api/ApiFormatBase.php |
— | — | @@ -209,7 +209,7 @@ |
210 | 210 | // identify URLs |
211 | 211 | $protos = implode("|", $wgUrlProtocols); |
212 | 212 | # This regex hacks around bug 13218 (" included in the URL) |
213 | | - $text = preg_replace("#(($protos).*?)(")?([ \\'\"()<\n])#", '<a href="\\1">\\1</a>\\3\\4', $text); |
| 213 | + $text = preg_replace("#(($protos).*?)(")?([ \\'\"<\n])#", '<a href="\\1">\\1</a>\\3\\4', $text); |
214 | 214 | // identify requests to api.php |
215 | 215 | $text = preg_replace("#api\\.php\\?[^ \\()<\n\t]+#", '<a href="\\0">\\0</a>', $text); |
216 | 216 | if( $this->mHelp ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -1,4 +1,4 @@ |
2 | | - = MediaWiki release notes = |
| 2 | += MediaWiki release notes = |
3 | 3 | |
4 | 4 | Security reminder: MediaWiki does not require PHP's register_globals |
5 | 5 | setting since version 1.2.0. If you have it on, turn it *off* if you can. |
— | — | @@ -137,6 +137,8 @@ |
138 | 138 | * (bug 16483) Kill filesort in ApiQueryBacklinks caused by missing parentheses. |
139 | 139 | Building query properly now using makeList() |
140 | 140 | * Add "check" parameter to action=email |
| 141 | +* (bug 17182) Fix pretty printer so URLs with parentheses in them are |
| 142 | + autolinked correctly |
141 | 143 | |
142 | 144 | === Languages updated in 1.15 === |
143 | 145 | |