ComponentPartial properties should be publically accessible
Fixes caching issue when updating a component partial
This commit is contained in:
parent
b15cdadd99
commit
cafd5d7ffa
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue