Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -822,9 +822,9 @@ |
823 | 823 | $this->mRedirect = ''; |
824 | 824 | $this->mBodytext = ''; |
825 | 825 | |
| 826 | + array_unshift( $params, 'parse' ); |
826 | 827 | array_unshift( $params, $msg ); |
827 | | - $message = call_user_func_array( 'wfMsg', $params ); |
828 | | - $this->addWikiText( $message ); |
| 828 | + $this->addHtml( call_user_func_array( 'wfMsgExt', $params ) ); |
829 | 829 | |
830 | 830 | $this->returnToMain( false ); |
831 | 831 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -394,6 +394,8 @@ |
395 | 395 | * (bug 7890) Don't list redirects to special pages in Special:BrokenRedirects |
396 | 396 | * (bug 10783) Resizing PNG-24 images causes all alpha channel transparency to be |
397 | 397 | lost and transparent pixels to be turned black |
| 398 | +* (bug 9339) General error pages were transforming messages and their parameters |
| 399 | + in the wrong order |
398 | 400 | |
399 | 401 | == API changes since 1.10 == |
400 | 402 | |