From 147f16d99c440c43ad69d73cfc9659309a0b7179 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 22 Sep 2010 13:54:53 +0000 Subject: [PATCH] Followup r71961, more php4 constructors --- maintenance/backup.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maintenance/backup.inc b/maintenance/backup.inc index 3506d84565..f442451652 100644 --- a/maintenance/backup.inc +++ b/maintenance/backup.inc @@ -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; } -- 2.20.1