Followup r71961, more php4 constructors
authorChad Horohoe <demon@users.mediawiki.org>
Wed, 22 Sep 2010 13:54:53 +0000 (13:54 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Wed, 22 Sep 2010 13:54:53 +0000 (13:54 +0000)
maintenance/backup.inc

index 3506d84..f442451 100644 (file)
@@ -29,7 +29,7 @@
  */
 class DumpDBZip2Output extends DumpPipeOutput {
        function DumpDBZip2Output( $file ) {
-               parent::DumpPipeOutput( "dbzip2", $file );
+               parent::__construct( "dbzip2", $file );
        }
 }
 
@@ -305,7 +305,7 @@ class BackupDumper {
 
 class ExportProgressFilter extends DumpFilter {
        function ExportProgressFilter( &$sink, &$progress ) {
-               parent::DumpFilter( $sink );
+               parent::__construct( $sink );
                $this->progress = $progress;
        }