r103709 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r103708‎ | r103709 | r103710 >
Date:21:14, 19 November 2011
Author:reedy
Status:ok
Tags:
Comment:
* (bug 32505) Incorrect spacing on messages for Special:EditWatchlist/raw results

Patch by Brad Jorsch
Modified paths:
  • /trunk/phase3/includes/specials/SpecialEditWatchlist.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/specials/SpecialEditWatchlist.php
@@ -135,7 +135,7 @@
136136 }
137137
138138 if( count( $toWatch ) > 0 ) {
139 - $this->successMessage .= wfMessage(
 139+ $this->successMessage .= ' ' . wfMessage(
140140 'watchlistedit-raw-added',
141141 $this->getLang()->formatNum( count( $toWatch ) )
142142 );
@@ -143,7 +143,7 @@
144144 }
145145
146146 if( count( $toUnwatch ) > 0 ) {
147 - $this->successMessage .= wfMessage(
 147+ $this->successMessage .= ' ' . wfMessage(
148148 'watchlistedit-raw-removed',
149149 $this->getLang()->formatNum( count( $toUnwatch ) )
150150 );

Follow-up revisions

RevisionCommit summaryAuthorDate
r106975MFT r103709: missing spaces between messages. Was just reported to me on IRC,...siebrand20:16, 21 December 2011

Status & tagging log