moved from maintenance to maintenance/storage
authorTim Starling <tstarling@users.mediawiki.org>
Sun, 14 Aug 2005 12:09:32 +0000 (12:09 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Sun, 14 Aug 2005 12:09:32 +0000 (12:09 +0000)
maintenance/dumpRev.php [deleted file]
maintenance/storage/dumpRev.php [new file with mode: 0644]

diff --git a/maintenance/dumpRev.php b/maintenance/dumpRev.php
deleted file mode 100644 (file)
index b665d93..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-/**
- * @todo document
- * @package MediaWiki
- * @subpackage Maintenance
- */
-
-/** */
-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 );
-}
-
-?>
diff --git a/maintenance/storage/dumpRev.php b/maintenance/storage/dumpRev.php
new file mode 100644 (file)
index 0000000..b665d93
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+/**
+ * @todo document
+ * @package MediaWiki
+ * @subpackage Maintenance
+ */
+
+/** */
+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 );
+}
+
+?>