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:
mark_story 2012-04-13 07:48:09 -04:00
parent fec704ca8c
commit 8eb913433f
2 changed files with 13 additions and 14 deletions

View file

@ -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