From cafd5d7ffa6425585efd8a4ce1b05c4933979d9b Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Sat, 16 Apr 2016 04:42:34 +1000 Subject: [PATCH] ComponentPartial properties should be publically accessible Fixes caching issue when updating a component partial --- modules/cms/classes/ComponentPartial.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/cms/classes/ComponentPartial.php b/modules/cms/classes/ComponentPartial.php index 83c254fcc..fb61c9c96 100644 --- a/modules/cms/classes/ComponentPartial.php +++ b/modules/cms/classes/ComponentPartial.php @@ -23,17 +23,17 @@ class ComponentPartial extends Extendable implements CmsObjectContract /** * @var string The component partial file name. */ - protected $fileName; + public $fileName; /** * @var string Last modified time. */ - protected $mtime; + public $mtime; /** * @var string Partial content. */ - protected $content; + public $content; /** * @var int The maximum allowed path nesting level. The default value is 2,