summaryrefslogtreecommitdiffstats
path: root/system/helpers
diff options
context:
space:
mode:
authorpatwork <patwork@gmail.com>2011-04-08 15:25:31 +0200
committerpatwork <patwork@gmail.com>2011-04-08 15:25:31 +0200
commit64e35cdcb9fd24787798c0f6ca3c0af45b0b904d (patch)
tree231a6db1a27cd8c3ea35e9b1dddfc4e21fe22eab /system/helpers
parentb07079827b084213463bdf576894faab172213f2 (diff)
There is absolutely no need to specify class name (it will validate anyway).
Diffstat (limited to 'system/helpers')
-rw-r--r--system/helpers/form_helper.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php
index acd75c239..bca0ff0c9 100644
--- a/system/helpers/form_helper.php
+++ b/system/helpers/form_helper.php
@@ -72,7 +72,7 @@ if ( ! function_exists('form_open'))
if (is_array($hidden) AND count($hidden) > 0)
{
- $form .= sprintf("\n<div class=\"hidden\">%s</div>", form_hidden($hidden));
+ $form .= sprintf("\n<div>%s</div>", form_hidden($hidden));
}
return $form;
@@ -1053,4 +1053,4 @@ if ( ! function_exists('_get_validation_object'))
/* End of file form_helper.php */
-/* Location: ./system/helpers/form_helper.php */ \ No newline at end of file
+/* Location: ./system/helpers/form_helper.php */