So single trial; add --count option for number of titles to do (otherwise does three...
[lhc/web/wiklou.git] / maintenance / dumpRev.php
1 <?
2 require_once( 'commandLine.inc' );
3 $dbr =& wfGetDB( DB_SLAVE );
4 $row = $dbr->selectRow( 'old', array( 'old_flags', 'old_text' ), array( 'old_id' => 52 ) );
5 $obj = unserialize( $row->old_text );
6 print_r( array_keys( $obj->mItems ) );
7
8 ?>