From f673a87ad9530a2982caef0bd5a53983d6b06a63 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Wed, 16 Sep 2009 09:35:03 +0000 Subject: --- system/helpers/form_helper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'system/helpers/form_helper.php') 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; } -- cgit v1.2.3-24-g4f1b