diff options
author | Derek Allard <derek.allard@ellislab.com> | 2009-09-16 11:35:03 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2009-09-16 11:35:03 +0200 |
commit | f673a87ad9530a2982caef0bd5a53983d6b06a63 (patch) | |
tree | b8782ac8f8be31f876482239801e536465a9f2f0 | |
parent | 31f424a639cc95f9eec6830708374a08f703e15f (diff) |
-rw-r--r-- | system/helpers/form_helper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 2fd4807fc..5917d1016 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -52,7 +52,7 @@ if ( ! function_exists('form_open')) } else { - if ( is_string($attributes) ) + if ( is_string($attributes)) { if(strpos('accept-charset=') === FALSE) { @@ -63,7 +63,7 @@ if ( ! function_exists('form_open')) { $attributes = (array) $attributes; - if(!in_array('accept-charset', $attributes)) + if ( ! in_array('accept-charset', $attributes)) { $attributes['accept-charset'] = $charset; } |