From: Brad Jorsch Date: Fri, 23 May 2014 15:06:06 +0000 (-0400) Subject: Revert visibility change on DiffHistoryBlob::$mCompressed X-Git-Tag: 1.31.0-rc.0~15608^2 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=bebcf2c5838144821830158974b7bdabd00d6596;p=lhc%2Fweb%2Fwiklou.git Revert visibility change on DiffHistoryBlob::$mCompressed Changing the visibility from public to protected causes unserialization to fail. Bug: 65665 Change-Id: Id7ee2068749ff421fab4d1c9067763adf4b89563 --- diff --git a/includes/HistoryBlob.php b/includes/HistoryBlob.php index e95536a97e..06e5ecc2bb 100644 --- a/includes/HistoryBlob.php +++ b/includes/HistoryBlob.php @@ -374,7 +374,7 @@ class DiffHistoryBlob implements HistoryBlob { protected $mDefaultKey; /** @var string Compressed storage */ - protected $mCompressed; + public $mCompressed; /** @var bool True if the object is locked against further writes */ protected $mFrozen = false;