diff options
Diffstat (limited to 'maintenance/storage/dumpRev.php')
-rw-r--r-- | maintenance/storage/dumpRev.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/maintenance/storage/dumpRev.php b/maintenance/storage/dumpRev.php new file mode 100644 index 00000000..4d0ccb58 --- /dev/null +++ b/maintenance/storage/dumpRev.php @@ -0,0 +1,14 @@ +<?php + +require_once( 'commandLine.inc' ); +$dbr =& wfGetDB( DB_SLAVE ); +$row = $dbr->selectRow( 'old', array( 'old_flags', 'old_text' ), array( 'old_id' => $args[0] ) ); +$obj = unserialize( $row->old_text ); + +if ( get_class( $obj ) == 'concatenatedgziphistoryblob' ) { + print_r( array_keys( $obj->mItems ) ); +} else { + var_dump( $obj ); +} + +?> |