diff options
Diffstat (limited to 'includes/SpecialBooksources.php')
-rw-r--r-- | includes/SpecialBooksources.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/SpecialBooksources.php b/includes/SpecialBooksources.php index 5f103495..af258872 100644 --- a/includes/SpecialBooksources.php +++ b/includes/SpecialBooksources.php @@ -31,7 +31,7 @@ class SpecialBookSources extends SpecialPage { global $wgOut, $wgRequest; $this->setHeaders(); $this->isbn = $this->cleanIsbn( $isbn ? $isbn : $wgRequest->getText( 'isbn' ) ); - $wgOut->addWikiText( wfMsgNoTrans( 'booksources-summary' ) ); + $wgOut->addWikiMsg( 'booksources-summary' ); $wgOut->addHtml( $this->makeForm() ); if( strlen( $this->isbn ) > 0 ) $this->showList(); @@ -87,7 +87,7 @@ class SpecialBookSources extends SpecialPage { } # Fall back to the defaults given in the language file - $wgOut->addWikiText( wfMsgNoTrans( 'booksources-text' ) ); + $wgOut->addWikiMsg( 'booksources-text' ); $wgOut->addHtml( '<ul>' ); $items = $wgContLang->getBookstoreList(); foreach( $items as $label => $url ) |