r27520 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r27519‎ | r27520 | r27521 >
Date:14:42, 15 November 2007
Author:rotem
Status:old
Tags:
Comment:
Show 'no reason given' rather than a single apostrophe in a 'user blocked' page, when no reason is given for a block.
Modified paths:
  • /trunk/phase3/includes/OutputPage.php (modified) (history)
  • /trunk/phase3/includes/Title.php (modified) (history)
  • /trunk/phase3/languages/messages/MessagesEn.php (modified) (history)
  • /trunk/phase3/languages/messages/MessagesHe.php (modified) (history)
  • /trunk/phase3/maintenance/language/messages.inc (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/language/messages.inc
@@ -461,6 +461,7 @@
462462 'blockedtitle',
463463 'blockedtext',
464464 'autoblockedtext',
 465+ 'blockednoreason',
465466 'blockedoriginalsource',
466467 'blockededitsource',
467468 'whitelistedittitle',
Index: trunk/phase3/includes/OutputPage.php
@@ -764,6 +764,9 @@
765765
766766 $name = User::whoIs( $wgUser->blockedBy() );
767767 $reason = $wgUser->blockedFor();
 768+ if( $reason == '' ) {
 769+ $reason = wfMsg( 'blockednoreason' );
 770+ }
768771 $blockTimestamp = $wgLang->timeanddate( wfTimestamp( TS_MW, $wgUser->mBlock->mTimestamp ), true );
769772 $ip = wfGetIP();
770773
Index: trunk/phase3/includes/Title.php
@@ -1056,6 +1056,9 @@
10571057
10581058 $id = $user->blockedBy();
10591059 $reason = $user->blockedFor();
 1060+ if( $reason == '' ) {
 1061+ $reason = wfMsg( 'blockednoreason' );
 1062+ }
10601063 $ip = wfGetIP();
10611064
10621065 if ( is_numeric( $id ) ) {
Index: trunk/phase3/languages/messages/MessagesEn.php
@@ -977,6 +977,7 @@
978978 registered in your [[Special:Preferences|user preferences]] and you have not been blocked from using it.
979979
980980 Your block ID is $5. Please include this ID in any queries you make.',
 981+'blockednoreason' => 'no reason given',
981982 'blockedoriginalsource' => "The source of '''$1''' is
982983 shown below:",
983984 'blockededitsource' => "The text of '''your edits''' to '''$1''' is shown below:",
Index: trunk/phase3/languages/messages/MessagesHe.php
@@ -788,6 +788,7 @@
789789 באפשרותכם ליצור קשר עם $1 או עם כל אחד מ[[Project:מפעיל מערכת|מפעילי המערכת]] האחרים כדי לדון על החסימה.
790790 אינכם יכולים להשתמש בתכונת "שלחו דואר אלקטרוני למשתמש זה" אם לא ציינתם כתובת דוא"ל תקפה ב[[Special:Preferences|העדפות המשתמש שלכם]] או אם נחסמתם משליחת דוא"ל.
791791 מספר החסימה שלכם הוא #$5. אנא ציינו זאת בכל פנייה למפעילי המערכת.',
 792+'blockedreason' => 'לא ניתנה סיבה',
792793 'blockedoriginalsource' => "טקסט המקור של '''$1''' מוצג למטה:",
793794 'blockededitsource' => "הטקסט של '''העריכות שלך''' לדף '''$1''' מוצג למטה:",
794795 'whitelistedittitle' => 'כניסה לחשבון נדרשת לעריכה',

Status & tagging log