summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-09-25 15:04:12 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-09-25 15:04:12 +0200
commit69db8efaffadfc93ff0eec3a9733793e8b358dfb (patch)
treec581d95bfcac10ab07371a6128f417ce4bdef88d /system
parenta7cf027235c92103118cf415d244447a6ea82b3a (diff)
Fixed incorrect parenthesis in form_open() function. (#5135)
A few doc typo fixes
Diffstat (limited to 'system')
-rw-r--r--system/helpers/form_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php
index fc2592241..a45faf631 100644
--- a/system/helpers/form_helper.php
+++ b/system/helpers/form_helper.php
@@ -57,7 +57,7 @@ if ( ! function_exists('form_open'))
$form .= '>';
- if (is_array($hidden) AND count($hidden > 0))
+ if (is_array($hidden) AND count($hidden) > 0)
{
$form .= form_hidden($hidden);
}