Fix php4 constructor

Change-Id: Id5634dc8126fe570abb2bdf6ef1fc8052ac9e051
This commit is contained in:
Reedy 2012-04-07 21:41:31 +01:00
parent 051bd65948
commit 7014d835d1

View file

@ -28,7 +28,7 @@
* @ingroup Dump Maintenance
*/
class DumpDBZip2Output extends DumpPipeOutput {
function DumpDBZip2Output( $file ) {
function __construct( $file ) {
parent::__construct( "dbzip2", $file );
}
}