Browse Source

Moving declaration of $fieldset

Its used in base Helper methods, so that's where the property
should live as well.
mark_story 14 years ago
parent
commit
d6b978c0e8
2 changed files with 2 additions and 9 deletions
  1. 2 1
      lib/Cake/View/Helper.php
  2. 0 8
      lib/Cake/View/Helper/FormHelper.php

+ 2 - 1
lib/Cake/View/Helper.php

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

+ 0 - 8
lib/Cake/View/Helper/FormHelper.php

@@ -40,14 +40,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
  *
  * @var array