change form and html class to use html5 style elements.

This commit is contained in:
Taylor Otwell
2011-07-02 07:17:17 -05:00
parent 4e4ca091d9
commit a9029ddfe9
2 changed files with 4 additions and 4 deletions

View File

@@ -317,7 +317,7 @@ class Form {
$attributes['value'] = $value;
$attributes['id'] = static::id($name, $attributes);
return '<input'.HTML::attributes($attributes).' />'.PHP_EOL;
return '<input'.HTML::attributes($attributes).'>'.PHP_EOL;
}
/**