Index: trunk/extensions/LogEntry/LogEntry.body.php |
— | — | @@ -82,7 +82,7 @@ |
83 | 83 | $article = new Article( $title ); |
84 | 84 | |
85 | 85 | # Build new line |
86 | | - $newLine = sprintf( "* %s %s: %s", date( 'H:i' ), $wgUser->getName(), |
| 86 | + $newLine = sprintf( "* %s %s: %s", gmdate( 'H:i' ), $wgUser->getName(), |
87 | 87 | trim( htmlspecialchars( $wgRequest->getText( 'line' ) ) ) ); |
88 | 88 | |
89 | 89 | # Get content without logentry tag in it |
— | — | @@ -92,7 +92,7 @@ |
93 | 93 | $contentLines = explode( "\n", $content ); |
94 | 94 | |
95 | 95 | # Build heading |
96 | | - $heading = sprintf( '== %s ==', date( 'F j' ) ); |
| 96 | + $heading = sprintf( '== %s ==', gmdate( 'F j' ) ); |
97 | 97 | |
98 | 98 | # Find line of first section |
99 | 99 | $sectionLine = false; |