Index: trunk/phase3/includes/Wiki.php |
— | — | @@ -252,7 +252,7 @@ |
253 | 253 | $article = $this->articleFromTitle( $title ); |
254 | 254 | |
255 | 255 | // Namespace might change when using redirects |
256 | | - if( $action == 'view' && !$request->getVal( 'oldid' ) && |
| 256 | + if( ( $action == 'view' || $action == 'render' ) && !$request->getVal( 'oldid' ) && |
257 | 257 | $request->getVal( 'redirect' ) != 'no' ) { |
258 | 258 | |
259 | 259 | $dbr = wfGetDB(DB_SLAVE); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -152,6 +152,7 @@ |
153 | 153 | * If an IP address is blocked as part of a rangeblock, attempting to unblock |
154 | 154 | the single IP should not unblock the entire range. |
155 | 155 | * (bug 6695) Fix native language name of Southern Sotho (Sesotho) (st) |
| 156 | +* Make action=render follow redirects by default |
156 | 157 | |
157 | 158 | === API changes in 1.12 === |
158 | 159 | |