Index: trunk/extensions/RecordAdmin/RecordAdmin_body.php |
— | — | @@ -418,8 +418,8 @@ |
419 | 419 | $text = str_replace( '%SELECT%', $sel, $text ); |
420 | 420 | $table .= "$text\n"; |
421 | 421 | } else { |
422 | | - $tsc = $this->formatDate( $r['created'] ); |
423 | | - $tsm = $this->formatDate( $r['modified'] ); |
| 422 | + $tsc = '<span style="display:none">' . ( 3e11 + date( 'U', $r['created'] ) ) . '</span>' . $this->formatDate( $r['created'] ); |
| 423 | + $tsm = '<span style="display:none">' . ( 3e11 + date( 'U', $r['modified'] ) ) . '</span>' . $this->formatDate( $r['modified'] ); |
424 | 424 | $t = $r[0]; |
425 | 425 | $u = $t->getLocalURL(); |
426 | 426 | $col = $r['title']; |
Index: trunk/extensions/RecordAdmin/RecordAdmin.php |
— | — | @@ -10,7 +10,7 @@ |
11 | 11 | * @author Siebrand Mazeland |
12 | 12 | * @licence GNU General Public Licence 2.0 or later |
13 | 13 | */ |
14 | | -define( 'RECORDADMIN_VERSION', '1.3.2, 2011-08-18' ); |
| 14 | +define( 'RECORDADMIN_VERSION', '1.3.3, 2011-08-18' ); |
15 | 15 | |
16 | 16 | $wgRecordAdminExtPath = preg_replace( "|^.*(/extensions/.*$)|", "$wgScriptPath$1", dirname( __FILE__ ) ); |
17 | 17 | |