From d931b7711139c53dd8871e93880287e716a9a6e4 Mon Sep 17 00:00:00 2001 From: phpnut Date: Sun, 4 Mar 2007 10:51:24 +0000 Subject: [PATCH] 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 --- cake/libs/view/helpers/form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/libs/view/helpers/form.php b/cake/libs/view/helpers/form.php index af2da9ec9..1dd54f7ec 100644 --- a/cake/libs/view/helpers/form.php +++ b/cake/libs/view/helpers/form.php @@ -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.