X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FHistoryBlob.php;h=51bd7a9e94f0eb11218e13bc7b408f95d258ec8b;hb=70d1bc00919efb1cbfd00e85bbf65b8e947cbdb6;hp=b17a2f5e2ad6a127d4e3811f48beaf1e508c991c;hpb=7874fc4bec845ad92960b07e969c65f3c3fe74f2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/HistoryBlob.php b/includes/HistoryBlob.php index b17a2f5e2a..51bd7a9e94 100644 --- a/includes/HistoryBlob.php +++ b/includes/HistoryBlob.php @@ -76,9 +76,6 @@ class ConcatenatedGzipHistoryBlob implements HistoryBlob { public $mMaxSize = 10000000; public $mMaxCount = 100; - /** - * Constructor - */ public function __construct() { if ( !function_exists( 'gzdeflate' ) ) { throw new MWException( "Need zlib support to read or write this " @@ -239,7 +236,7 @@ class HistoryBlobStub { } /** - * @return string + * @return string|false */ function getText() { if ( isset( self::$blobCache[$this->mOldId] ) ) { @@ -590,7 +587,7 @@ class DiffHistoryBlob implements HistoryBlob { /** * Compute a binary "Adler-32" checksum as defined by LibXDiff, i.e. with - * the bytes backwards and initialised with 0 instead of 1. See bug 34428. + * the bytes backwards and initialised with 0 instead of 1. See T36428. * * @param string $s * @return string|bool False if the hash extension is not available