From: Sam Reed Date: Wed, 15 Dec 2010 22:41:06 +0000 (+0000) Subject: Change old php4 style constructor X-Git-Tag: 1.31.0-rc.0~33276 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=08522e70d6d96011a10ada507de5a7f9f31b40a9;p=lhc%2Fweb%2Fwiklou.git Change old php4 style constructor --- 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" ); }