Moving declaration of $fieldset

Its used in base Helper methods, so that's where the property
should live as well.
This commit is contained in:
mark_story 2011-09-08 20:44:33 -04:00
parent fa8bdfd0dd
commit d6b978c0e8
2 changed files with 2 additions and 9 deletions

View file

@ -65,7 +65,8 @@ class Helper extends Object {
public $plugin = null;
/**
* Fields this helper is using.
* Holds the fields array('field_name' => array('type'=> 'string', 'length'=> 100),
* primaryKey and validates array('field_name')
*
* @var array
*/

View file

@ -39,14 +39,6 @@ class FormHelper extends AppHelper {
*/
public $helpers = array('Html');
/**
* Holds the fields array('field_name' => array('type'=> 'string', 'length'=> 100),
* primaryKey and validates array('field_name')
*
* @var array
*/
public $fieldset = array();
/**
* Options used by DateTime fields
*