From bebcf2c5838144821830158974b7bdabd00d6596 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Fri, 23 May 2014 11:06:06 -0400 Subject: [PATCH] Revert visibility change on DiffHistoryBlob::$mCompressed Changing the visibility from public to protected causes unserialization to fail. Bug: 65665 Change-Id: Id7ee2068749ff421fab4d1c9067763adf4b89563 --- includes/HistoryBlob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1