r88820 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r88819‎ | r88820 | r88821 >
Date:19:35, 25 May 2011
Author:yuvipanda
Status:ok
Tags:
Comment:
Fixed i18n issue with wrong arg name
Modified paths:
  • /trunk/extensions/ShortUrl/ShortUrl.i18n.php (modified) (history)
  • /trunk/extensions/ShortUrl/SpecialShortUrl.php (modified) (history)

Diff [purge]

Index: trunk/extensions/ShortUrl/ShortUrl.i18n.php
@@ -17,7 +17,7 @@
1818 $messages['en'] = array(
1919 'shorturl' => 'Short Url',
2020 'shorturl-desc' => '[[Special:ShortUrl|Short Url for redirects]]',
21 - 'shorturl-not-found' => 'Sorry, the URL you are looking for is not found (No article with ID $1 exists)',
 21+ 'shorturl-not-found' => 'Sorry, the URL you are looking for is not found (No Short URL with ID $1 exists)',
2222 'shorturl-toolbox-title' => 'Copy this short link for sharing',
2323 'shorturl-toolbox-text' => 'Short URL'
2424 );
Index: trunk/extensions/ShortUrl/SpecialShortUrl.php
@@ -44,7 +44,7 @@
4545 return;
4646 }
4747 // Wrong ID
48 - $notfound = Html::element( 'p', array(), wfMsg ( 'shorturl-not-found', $id ) );
 48+ $notfound = Html::element( 'p', array(), wfMsg ( 'shorturl-not-found', $par ) );
4949 $wgOut->addHTML( $notfound );
5050 }
5151 }

Status & tagging log