diff options
author | Brennan Thompson <brenjt@gmail.com> | 2014-02-14 21:16:37 +0100 |
---|---|---|
committer | Brennan Thompson <brenjt@gmail.com> | 2014-02-14 21:16:37 +0100 |
commit | 5c2a6bb7daf97195296291e6a12ac7340de42554 (patch) | |
tree | 89209618fa915e0b9ab42870cd6dbde41d1b4983 /system | |
parent | 06a0d625beed35d23ede1b599e4ef532a0f819f9 (diff) |
Removed space for travis ci checks
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/form_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 31c274ced..23ce9d12d 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -336,7 +336,7 @@ if ( ! function_exists('form_dropdown')) $multiple = (count($selected) > 1 && strpos($extra, 'multiple') === FALSE) ? ' multiple="multiple"' : ''; - $form = '<select '._parse_form_attributes($data, $defaults).$extra.' '.$multiple.">\n"; + $form = '<select '._parse_form_attributes($data, $defaults).$extra.$multiple.">\n"; foreach ($options as $key => $val) { |