Do *NOT* force all wikis into a non-functional initial state with a broken whitelist...
[mediawiki.git] / maintenance / dumpRev.php
blobe42b90ad67f2aa66b050dcbfc90116b4bd954f68
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 ) );
8 ?>