Index: trunk/phase3/CREDITS |
— | — | @@ -67,6 +67,7 @@ |
68 | 68 | * Juliano F. Ravasi |
69 | 69 | * Lucas Garczewski |
70 | 70 | * Louperivois |
| 71 | +* Marcin Cieślak |
71 | 72 | * Marooned |
72 | 73 | * Max Semenik |
73 | 74 | * Michael De La Rue |
Index: trunk/phase3/includes/ChangesFeed.php |
— | — | @@ -20,7 +20,7 @@ |
21 | 21 | |
22 | 22 | public function execute( $feed, $rows, $limit=0, $hideminor=false, $lastmod=false, $target='' ) { |
23 | 23 | global $messageMemc, $wgFeedCacheTimeout; |
24 | | - global $wgFeedClasses, $wgSitename, $wgContLanguageCode; |
| 24 | + global $wgSitename, $wgContLanguageCode; |
25 | 25 | |
26 | 26 | if ( !FeedUtils::checkFeedOutput( $this->format ) ) { |
27 | 27 | return; |
Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -138,7 +138,7 @@ |
139 | 139 | global $wgScript, $wgStylePath, $wgContLanguageCode; |
140 | 140 | global $wgMimeType, $wgJsMimeType, $wgOutputEncoding, $wgRequest; |
141 | 141 | global $wgXhtmlDefaultNamespace, $wgXhtmlNamespaces; |
142 | | - global $wgDisableCounters, $wgLogo, $action, $wgFeedClasses, $wgHideInterlanguageLinks; |
| 142 | + global $wgDisableCounters, $wgLogo, $action, $wgHideInterlanguageLinks; |
143 | 143 | global $wgMaxCredits, $wgShowCreditsIfMax; |
144 | 144 | global $wgPageShowWatchingUsers; |
145 | 145 | global $wgUseTrackbacks, $wgUseSiteJs; |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1020,7 +1020,8 @@ |
1021 | 1021 | if( $wgOut->isSyndicated() ) { |
1022 | 1022 | foreach( $wgFeedClasses as $format => $class ) { |
1023 | 1023 | $feedurl = $wgRequest->escapeAppendQuery( "feed=$format" ); |
1024 | | - $s[] = "<a href=\"$feedurl\" rel=\"alternate\" type=\"application/{$format}+xml\" class=\"feedlink\">{$format}</a>"; |
| 1024 | + $s[] = "<a href=\"$feedurl\" rel=\"alternate\" type=\"application/{$format}+xml\"" |
| 1025 | + . " class=\"feedlink\">" . wfMsg( "feed-$format" ) . "</a>"; |
1025 | 1026 | } |
1026 | 1027 | } |
1027 | 1028 | return $wgLang->pipeList( $s ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -169,6 +169,7 @@ |
170 | 170 | * (bug 12746) Do not allow new password e-mails when wiki is in read-only mode |
171 | 171 | * (bug 17478) Fixed a PHP Strict standards error in |
172 | 172 | maintenance/cleanupWatchlist.php |
| 173 | +* (bug 17488) RSS/Atom links in left toolbar are now localized |
173 | 174 | |
174 | 175 | == API changes in 1.15 == |
175 | 176 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |