diff options
author | Adam Jackett <adam@darkhouse.ca> | 2015-06-17 16:42:23 +0200 |
---|---|---|
committer | Adam Jackett <adam@darkhouse.ca> | 2015-06-17 16:42:23 +0200 |
commit | 0c75c8219e42cf629036f73944901bd9f1f286bf (patch) | |
tree | fc46c532959041e937aa6c60b300e2a1bfade949 /system | |
parent | 664d25a2286b5fdef740da7a3c4d72d8fa00d530 (diff) |
removed unnecessary change to form_radio, updated docs and added changelog entry
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/form_helper.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index c77069c55..f8c6a9dde 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -483,8 +483,6 @@ if ( ! function_exists('form_radio')) is_array($data) OR $data = array('name' => $data); $data['type'] = 'radio'; - $extra = _attributes_to_string($extra); - return form_checkbox($data, $value, $checked, $extra); } } |