Index: trunk/extensions/Translate/ffs/Gettext.php |
— | — | @@ -338,11 +338,12 @@ |
339 | 339 | |
340 | 340 | $specs = isset( $template['HEADERS'] ) ? $template['HEADERS'] : array(); |
341 | 341 | |
| 342 | + $timestamp = wfTimestampNow(); |
342 | 343 | $specs['Project-Id-Version'] = $this->group->getLabel(); |
343 | 344 | $specs['Report-Msgid-Bugs-To'] = $wgSitename; |
344 | | - $specs['PO-Revision-Date'] = self::formatTime( wfTimestampNow() ); |
| 345 | + $specs['PO-Revision-Date'] = self::formatTime( $timestamp ); |
345 | 346 | if ( $this->offlineMode ) { |
346 | | - $specs['POT-Creation-Date'] = self::formatTime( wfTimestampNow() ); |
| 347 | + $specs['POT-Creation-Date'] = self::formatTime( $timestamp ); |
347 | 348 | } elseif ( $this->group instanceof MessageGroupBase ) { |
348 | 349 | $specs['X-POT-Import-Date'] = self::formatTime( wfTimestamp( TS_MW, $this->getPotTime() ) ); |
349 | 350 | } |