Index: trunk/phase3/includes/specials/SpecialListusers.php |
— | — | @@ -142,8 +142,9 @@ |
143 | 143 | $created = ''; |
144 | 144 | # Some rows may be NULL |
145 | 145 | if( $row->creation ) { |
146 | | - $d = $wgLang->timeanddate( wfTimestamp( TS_MW, $row->creation ), true ); |
147 | | - $created = ' (' . wfMsgHtml( 'usercreated', $d ) . ')'; |
| 146 | + $d = $wgLang->date( wfTimestamp( TS_MW, $row->creation ), true ); |
| 147 | + $t = $wgLang->time( wfTimestamp( TS_MW, $row->creation ), true ); |
| 148 | + $created = ' (' . wfMsgHtml( 'usercreated', $d, $t ) . ')'; |
148 | 149 | } |
149 | 150 | |
150 | 151 | wfRunHooks( 'SpecialListusersFormatRow', array( &$item, $row ) ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2133,7 +2133,7 @@ |
2134 | 2134 | 'listusers-editsonly' => 'Show only users with edits', |
2135 | 2135 | 'listusers-creationsort' => 'Sort by creation date', |
2136 | 2136 | 'usereditcount' => '$1 {{PLURAL:$1|edit|edits}}', |
2137 | | -'usercreated' => 'Created on $1', |
| 2137 | +'usercreated' => 'Created on $1 at $2', |
2138 | 2138 | 'newpages' => 'New pages', |
2139 | 2139 | 'newpages-summary' => '', # do not translate or duplicate this message to other languages |
2140 | 2140 | 'newpages-username' => 'Username:', |