r49466 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r49465‎ | r49466 | r49467 >
Date:15:04, 14 April 2009
Author:raymond
Status:ok
Tags:
Comment:
Fix a fixme from r49186:: date/time split in message but not yet in file DumpPage.php because locked by Tim.
Modified paths:
  • /trunk/extensions/SecurePoll/SecurePoll.i18n.php (modified) (history)
  • /trunk/extensions/SecurePoll/includes/DumpPage.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SecurePoll/SecurePoll.i18n.php
@@ -113,7 +113,7 @@
114114 # Dump page
115115 'securepoll-dump-title' => 'Dump: $1',
116116 'securepoll-dump-no-crypt' => 'No encrypted election record is available for this election, because the election is not configured to use encryption.',
117 - 'securepoll-dump-not-finished' => 'Encrypted election records are only available after the finish date on $1 at $2', # FIXME: date/time split in message but not yet in file DumpPage.php because locked by Tim.
 117+ 'securepoll-dump-not-finished' => 'Encrypted election records are only available after the finish date on $1 at $2',
118118 'securepoll-dump-no-urandom' => 'Cannot open /dev/urandom.
119119 To maintain voter privacy, encrypted election records are only publically available when they can be shuffled with a secure random number stream.',
120120
Index: trunk/extensions/SecurePoll/includes/DumpPage.php
@@ -35,7 +35,8 @@
3636 if ( !$this->election->isFinished() ) {
3737 global $wgLang;
3838 $wgOut->addWikiMsg( 'securepoll-dump-not-finished',
39 - $wgLang->timeanddate( $this->election->getEndDate() ) );
 39+ $wgLang->date( $this->election->getEndDate() ),
 40+ $wgLang->time( $this->election->getEndDate() ) );
4041 return;
4142 }
4243

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r49186* split date and time for 'securepoll-dump-not-finished'...siebrand21:23, 4 April 2009

Status & tagging log