Index: trunk/phase3/includes/Article.php |
— | — | @@ -2361,7 +2361,7 @@ |
2362 | 2362 | if ( $noRedir ) { |
2363 | 2363 | $query = 'redirect=no'; |
2364 | 2364 | if ( $extraQuery ) |
2365 | | - $query .= "&$query"; |
| 2365 | + $query .= "&$extraQuery"; |
2366 | 2366 | } else { |
2367 | 2367 | $query = $extraQuery; |
2368 | 2368 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -181,6 +181,8 @@ |
182 | 182 | * (bug 22967) Make edit summary length cut-off behave correctly for |
183 | 183 | multibyte characters. |
184 | 184 | * (bug 8689) Long numeric lines no longer kill the parser. |
| 185 | +* (bug 23740) Article::doRedirect() now use $extraQuery parameter correctly if |
| 186 | + the $noRedir parameter is set to true |
185 | 187 | |
186 | 188 | === API changes in 1.17 === |
187 | 189 | * (bug 22738) Allow filtering by action type on query=logevent. |