mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Removing $this->Html-> in FormHelper::textarea()
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4578 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
d4c62a855b
commit
d931b77111
1 changed files with 1 additions and 1 deletions
|
@ -468,7 +468,7 @@ class FormHelper extends AppHelper {
|
|||
if ($this->tagIsInvalid()) {
|
||||
$htmlAttributes = $this->addClass($htmlAttributes, 'form-error');
|
||||
}
|
||||
return $this->output(sprintf($this->Html->tags['textarea'], $this->model(), $this->field(), $this->Html->_parseAttributes($htmlAttributes, null, ' '), $value));
|
||||
return $this->output(sprintf($this->Html->tags['textarea'], $this->model(), $this->field(), $this->_parseAttributes($htmlAttributes, null, ' '), $value));
|
||||
}
|
||||
/**
|
||||
* Creates a hidden input field.
|
||||
|
|
Loading…
Add table
Reference in a new issue