mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
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:
parent
fa8bdfd0dd
commit
d6b978c0e8
2 changed files with 2 additions and 9 deletions
|
@ -65,7 +65,8 @@ class Helper extends Object {
|
||||||
public $plugin = null;
|
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
|
* @var array
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -39,14 +39,6 @@ class FormHelper extends AppHelper {
|
||||||
*/
|
*/
|
||||||
public $helpers = array('Html');
|
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
|
* Options used by DateTime fields
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue