mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-05 02:52:41 +00:00
Move _attributeFormat and _minimizedAttributeFormat down.
Both properties are referenced by Helper. The properties should be declared there as well. Fixes #2771
This commit is contained in:
parent
fec704ca8c
commit
8eb913433f
2 changed files with 13 additions and 14 deletions
|
@ -139,6 +139,19 @@ class Helper extends Object {
|
|||
'defer', 'ismap', 'nohref', 'noshade', 'nowrap', 'multiple', 'noresize',
|
||||
'autoplay', 'controls', 'loop', 'muted'
|
||||
);
|
||||
/**
|
||||
* Format to attribute
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $_attributeFormat = '%s="%s"';
|
||||
|
||||
/**
|
||||
* Format to attribute
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $_minimizedAttributeFormat = '%s="%s"';
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue