Index: trunk/extensions/regexBlock/regexBlock.i18n.php |
— | — | @@ -94,7 +94,9 @@ |
95 | 95 | * $2: username |
96 | 96 | * $3: database name |
97 | 97 | * $4: date/time |
98 | | -* $5: IP address', |
| 98 | +* $5: IP address |
| 99 | +* $6: isolated date of $4 |
| 100 | +* $7: isolated time of $4', |
99 | 101 | 'regexblock-view-blocked' => 'This is a label followed by a dropdown list of all users who have ever used regexBlock on the wiki, allowing the viewer to filter down the list of regexBlocks, i.e. see all blocks performed by User:X if users X, Y and Z have used regexBlock tool. There is [[mw:File:RegexBlock.png|a screenshot]].', |
100 | 102 | 'regexblock-view-all' => '{{Identical|All}}', |
101 | 103 | 'regexblock-view-go' => '{{Identical|Go}}', |
Index: trunk/extensions/regexBlock/SpecialRegexBlock.php |
— | — | @@ -410,7 +410,9 @@ |
411 | 411 | $row->stats_user, |
412 | 412 | htmlspecialchars( $row->stats_dbname ), |
413 | 413 | $wgLang->timeanddate( wfTimestamp( TS_MW, $row->stats_timestamp ), true ), |
414 | | - $row->stats_ip |
| 414 | + $row->stats_ip, |
| 415 | + $wgLang->date( wfTimestamp( TS_MW, $row->stats_timestamp ), true ), |
| 416 | + $wgLang->time( wfTimestamp( TS_MW, $row->stats_timestamp ), true ) |
415 | 417 | ) |
416 | 418 | ).' |
417 | 419 | </li>'); |
— | — | @@ -693,4 +695,4 @@ |
694 | 696 | static function isValidRegex( $text ) { |
695 | 697 | return ( sprintf( "%s", @preg_match("/{$text}/", 'regex') ) === '' ); |
696 | 698 | } |
697 | | -} |
\ No newline at end of file |
| 699 | +} |