The war on redundant ampersand usage!
[lhc/web/wiklou.git] / maintenance / storage / dumpRev.php
index 4d0ccb5..a082edc 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 require_once( 'commandLine.inc' );
-$dbr =& wfGetDB( DB_SLAVE );
+$dbr = wfGetDB( DB_SLAVE );
 $row = $dbr->selectRow( 'old', array( 'old_flags', 'old_text' ), array( 'old_id' => $args[0] ) );
 $obj = unserialize( $row->old_text );
 
@@ -11,4 +11,4 @@ if ( get_class( $obj ) == 'concatenatedgziphistoryblob' ) {
        var_dump( $obj );
 }
 
-?>
+?>
\ No newline at end of file