Index: trunk/extensions/SelectionSifter/SelectionSifter.i18n.php |
— | — | @@ -23,6 +23,7 @@ |
24 | 24 | 'ss-assessment-log' => 'Assessment Log', |
25 | 25 | 'ss-action' => 'Action', |
26 | 26 | 'ss-old' => 'Old Value', |
| 27 | + 'ss-timestamp' => 'Timestamp', |
27 | 28 | 'ss-new' => 'New Value', |
28 | 29 | 'ss-assessment-log-empty' => 'No log entries found' |
29 | 30 | ); |
Index: trunk/extensions/SelectionSifter/SpecialAssessmentLog.php |
— | — | @@ -26,17 +26,17 @@ |
27 | 27 | $out->setPageTitle( $this->msg( 'ss-assessment-log' ) ); |
28 | 28 | |
29 | 29 | $fields = array( |
30 | | - 'Project' => array( |
| 30 | + 'Project' => array( |
31 | 31 | 'type' => 'text', |
32 | 32 | 'label-message' => 'ss-project', |
33 | 33 | 'tabindex' => '1' |
34 | | - ) |
| 34 | + ) |
35 | 35 | ); |
36 | 36 | |
37 | 37 | $project = $request->getText( 'wpProject' ); |
38 | 38 | |
39 | 39 | $filters = array_filter( array( |
40 | | - 'l_project' => $project |
| 40 | + 'l_project' => $project |
41 | 41 | ) ); |
42 | 42 | |
43 | 43 | $form = new HTMLForm( $fields, $this->getContext() ); |
— | — | @@ -55,7 +55,8 @@ |
56 | 56 | Html::element( 'td', array(), wfMessage( 'ss-old' ) ) . |
57 | 57 | Html::element( 'td', array(), wfMessage( 'ss-new' ) ) . |
58 | 58 | Html::element( 'td', array(), wfMessage( 'ss-article' ) ) . |
59 | | - Html::element( 'td', array(), wfMessage( 'ss-project' ) ) |
| 59 | + Html::element( 'td', array(), wfMessage( 'ss-project' ) ) . |
| 60 | + Html::element( 'td', array(), wfMessage( 'ss-timestamp' ) ) |
60 | 61 | ) . |
61 | 62 | $pager->getBody() . |
62 | 63 | '</table>' . |
— | — | @@ -109,7 +110,7 @@ |
110 | 111 | Html::rawElement( 'td', array(), |
111 | 112 | Linker::linkKnown( $project_title, htmlspecialchars( $project_title->getText() ) ) |
112 | 113 | ) . |
113 | | - Html::element( 'td', array(), $row->l_timestamp ) |
| 114 | + Html::element( 'td', array(), wfTimestamp( TS_DB, $row->l_timestamp ) ) |
114 | 115 | ); |
115 | 116 | } |
116 | 117 | } |