Index: branches/JSTesting/includes/specials/SpecialJavaScriptTest.php |
— | — | @@ -47,7 +47,9 @@ |
48 | 48 | // Matched! Display proper title and initialize the framework |
49 | 49 | } elseif ( isset( self::$frameworks[$framework] ) ) { |
50 | 50 | $out->setPagetitle( wfMsg( 'javascripttest-title', wfMsg( "javascripttest-$framework-name" ) ) ); |
51 | | - $out->setSubtitle( wfMsg( 'javascripttest-backlink', Linker::linkKnown( $this->getTitle() ) ) ); |
| 51 | + $out->setSubtitle( |
| 52 | + wfMessage( 'javascripttest-backlink' )->rawParams( Linker::linkKnown( $this->getTitle() ) )->escaped() |
| 53 | + ); |
52 | 54 | $this->{self::$frameworks[$framework]}(); |
53 | 55 | |
54 | 56 | // Framework not found, display error |
Index: branches/JSTesting/languages/messages/MessagesEn.php |
— | — | @@ -3372,7 +3372,7 @@ |
3373 | 3373 | |
3374 | 3374 | # JavaScriptTest |
3375 | 3375 | 'javascripttest' => 'JavaScript Test', |
3376 | | -'javascripttest-backlink' => '← $1', |
| 3376 | +'javascripttest-backlink' => '< $1', |
3377 | 3377 | 'javascripttest-disabled' => 'This function is disabled.', |
3378 | 3378 | 'javascripttest-title' => 'Running $1 tests', |
3379 | 3379 | 'javascripttest-pagetext-noframework' => 'This page is reserved for running javascript tests.', |