Revert visibility change on DiffHistoryBlob::$mCompressed
authorBrad Jorsch <bjorsch@wikimedia.org>
Fri, 23 May 2014 15:06:06 +0000 (11:06 -0400)
committerBrad Jorsch <bjorsch@wikimedia.org>
Fri, 23 May 2014 15:06:06 +0000 (11:06 -0400)
Changing the visibility from public to protected causes unserialization
to fail.

Bug: 65665
Change-Id: Id7ee2068749ff421fab4d1c9067763adf4b89563

includes/HistoryBlob.php

index e95536a..06e5ecc 100644 (file)
@@ -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;