mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Fixing 'Only variables should be assigned by reference' errors in php4 in form helper. Fixes #643
This commit is contained in:
parent
1c1c511853
commit
1c3415759a
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ class FormHelper extends AppHelper {
|
|||
}
|
||||
}
|
||||
|
||||
$object =& $this->_introspectModel($model);
|
||||
$object = $this->_introspectModel($model);
|
||||
$this->setEntity($model . '.', true);
|
||||
|
||||
$modelEntity = $this->model();
|
||||
|
|
Loading…
Add table
Reference in a new issue