diff --git a/lib/Cake/View/Helper/HtmlHelper.php b/lib/Cake/View/Helper/HtmlHelper.php index adb6220d5..ae5741136 100644 --- a/lib/Cake/View/Helper/HtmlHelper.php +++ b/lib/Cake/View/Helper/HtmlHelper.php @@ -47,13 +47,13 @@ class HtmlHelper extends AppHelper { 'meta' => '', 'metalink' => '', 'link' => '%s', - 'mailto' => '%s', + 'mailto' => '%s', 'form' => '
', 'formend' => '
', 'input' => '', 'textarea' => '', 'hidden' => '', - 'checkbox' => '', + 'checkbox' => '', 'checkboxmultiple' => '', 'radio' => '%s', 'selectstart' => '', - 'file' => '', - 'file_no_model' => '', - 'submit' => '', - 'submitimage' => '', + 'password' => '', + 'file' => '', + 'file_no_model' => '', + 'submit' => '', + 'submitimage' => '', 'button' => '%s', - 'image' => '', + 'image' => '', 'tableheader' => '%s', 'tableheaderrow' => '%s', 'tablecell' => '%s', @@ -91,7 +91,7 @@ class HtmlHelper extends AppHelper { 'fieldsetstart' => '
%s', 'fieldsetend' => '
', 'legend' => '%s', - 'css' => '', + 'css' => '', 'style' => '', 'charset' => '', 'ul' => '%s', @@ -828,7 +828,7 @@ class HtmlHelper extends AppHelper { unset($options['url']); } - $image = sprintf($this->_tags['image'], $path, $this->_parseAttributes($options, null, '', ' ')); + $image = sprintf($this->_tags['image'], $path, $this->_parseAttributes($options, null, ' ', ' ')); if ($url) { return sprintf($this->_tags['link'], $this->url($url), null, $image); @@ -1188,7 +1188,7 @@ class HtmlHelper extends AppHelper { * * ``` * $tags = array( - * 'meta' => '' + * 'meta' => '' * ); * ``` *