From 08522e70d6d96011a10ada507de5a7f9f31b40a9 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Wed, 15 Dec 2010 22:41:06 +0000 Subject: [PATCH] Change old php4 style constructor --- includes/HistoryBlob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/HistoryBlob.php b/includes/HistoryBlob.php index 6e20b0f968..15f767e10b 100644 --- a/includes/HistoryBlob.php +++ b/includes/HistoryBlob.php @@ -53,7 +53,7 @@ class ConcatenatedGzipHistoryBlob implements HistoryBlob public $mMaxCount = 100; /** Constructor */ - public function ConcatenatedGzipHistoryBlob() { + public function __construct() { if ( !function_exists( 'gzdeflate' ) ) { throw new MWException( "Need zlib support to read or write this kind of history object (ConcatenatedGzipHistoryBlob)\n" ); } -- 2.20.1