Index: trunk/phase3/includes/ProtectionForm.php |
— | — | @@ -375,9 +375,9 @@ |
376 | 376 | |
377 | 377 | $expiryFormOptions = ''; |
378 | 378 | if ( $this->mExistingExpiry[$action] && $this->mExistingExpiry[$action] != 'infinity' ) { |
379 | | - $timestamp = $wgLang->timeanddate( $this->mExistingExpiry[$action] ); |
380 | | - $d = $wgLang->date( $this->mExistingExpiry[$action] ); |
381 | | - $t = $wgLang->time( $this->mExistingExpiry[$action] ); |
| 379 | + $timestamp = $wgLang->timeanddate( $this->mExistingExpiry[$action], true ); |
| 380 | + $d = $wgLang->date( $this->mExistingExpiry[$action], true ); |
| 381 | + $t = $wgLang->time( $this->mExistingExpiry[$action], true ); |
382 | 382 | $expiryFormOptions .= |
383 | 383 | Xml::option( |
384 | 384 | wfMsg( 'protect-existing-expiry', $timestamp, $d, $t ), |