From: Chad Horohoe Date: Wed, 22 Sep 2010 13:54:53 +0000 (+0000) Subject: Followup r71961, more php4 constructors X-Git-Tag: 1.31.0-rc.0~34838 X-Git-Url: http://git.cyclocoop.org//%22javascript:ModifierStyle%28%27%22.%24id.%22%27%29/%22?a=commitdiff_plain;h=147f16d99c440c43ad69d73cfc9659309a0b7179;p=lhc%2Fweb%2Fwiklou.git Followup r71961, more php4 constructors --- 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; }