summaryrefslogtreecommitdiff
path: root/includes/SpecialBooksources.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2008-03-21 11:49:34 +0100
committerPierre Schmitz <pierre@archlinux.de>2008-03-21 11:49:34 +0100
commit086ae52d12011746a75f5588e877347bc0457352 (patch)
treee73263c7a29d0f94fafb874562610e16eb292ba8 /includes/SpecialBooksources.php
parent749e7fb2bae7bbda855de3c9e319435b9f698ff7 (diff)
Update auf MediaWiki 1.12.0
Diffstat (limited to 'includes/SpecialBooksources.php')
-rw-r--r--includes/SpecialBooksources.php4
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 )