diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-07-13 11:05:52 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-07-13 11:05:52 +0200 |
commit | 6b114ae363eb94328b9d367492ae1b555a19a26c (patch) | |
tree | 2b6ef90dfe11af492c4a31801765ca6634318235 /system | |
parent | 6648da07a4dc001d5e9d2c16e501d563e7fa2118 (diff) |
Fix issue #1613
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/form_helper.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 0c5d55037..1bccac35c 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -340,8 +340,13 @@ if ( ! function_exists('form_dropdown')) { $key = (string) $key; - if (is_array($val) && ! empty($val)) + if (is_array($val)) { + if (empty($val)) + { + continue; + } + $form .= '<optgroup label="'.$key."\">\n"; foreach ($val as $optgroup_key => $optgroup_val) |