Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -266,7 +266,7 @@ |
267 | 267 | return $f; |
268 | 268 | } |
269 | 269 | |
270 | | - /** |
| 270 | + /** |
271 | 271 | * Output a subscription feed listing recent edits to this page. |
272 | 272 | * @param string $type |
273 | 273 | */ |
— | — | @@ -288,7 +288,7 @@ |
289 | 289 | $feed = new $wgFeedClasses[$type]( |
290 | 290 | $this->feedTitle(), |
291 | 291 | wfMsgExt( 'tagline', 'parsemag' ), |
292 | | - $this->getTitle()->getFullUrl() ); |
| 292 | + $this->getTitle()->getFullUrl() . "/" . htmlspecialchars( $this->opts['target'] ) ); |
293 | 293 | |
294 | 294 | // Already valid title |
295 | 295 | $nt = Title::makeTitleSafe( NS_USER, $this->opts['target'] ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -190,6 +190,8 @@ |
191 | 191 | * (bug 14980) Messages 'shareduploadwiki' and 'shareduploadwiki-desc' are now |
192 | 192 | used as a parameter in 'sharedupload' for easier styling and customization. |
193 | 193 | * (bug 17482) Formatting error in Special:Preferences#Misc (Opera) |
| 194 | +* (bug 17556) <link> parameters in Special:Contributions feeds (RSS and Atom) |
| 195 | + now point to the actual contributors' feed. |
194 | 196 | |
195 | 197 | == API changes in 1.15 == |
196 | 198 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |