diff options
author | nihaopaul <nihaopaul@gmail.com> | 2012-03-12 09:54:04 +0100 |
---|---|---|
committer | nihaopaul <nihaopaul@gmail.com> | 2012-03-12 09:54:04 +0100 |
commit | ca5cabc29483921dba05343cd30734980b696fd1 (patch) | |
tree | 2e720021165c52a350c3dfbc5e1bc54ce2e84823 /system/helpers | |
parent | 0ba29f5aa019b9c4a002fbecacf6ed33f3b68a3d (diff) |
form_dropdown() will now also take an array for unity with other form helpers., codestyle cleanup only
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/form_helper.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 9610cee98..efe5dbce1 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -315,7 +315,8 @@ if ( ! function_exists('form_dropdown')) function form_dropdown($name = '', $options = array(), $selected = array(), $extra = '') { // If name is really an array then we'll call the function again using the array - if ( is_array($name) ) { + if (is_array($name)) + { if ( ! isset($name['options'])) { $name['selected'] = false; |