diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-02-29 18:53:11 +0100 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2012-03-02 11:45:21 -0600 |
commit | 31eebda584d556454104a8fbf26974b6b49d9589 (patch) | |
tree | 5a883895aed910941817a7cd750e5dbbae23e679 /install/ui/widget.js | |
parent | afad0775e16e52aa2d6637e809ad748ace838bea (diff) | |
download | freeipa.git-31eebda584d556454104a8fbf26974b6b49d9589.tar.gz freeipa.git-31eebda584d556454104a8fbf26974b6b49d9589.tar.xz freeipa.git-31eebda584d556454104a8fbf26974b6b49d9589.zip |
Removed CSV creation from UI
Creating CSV values in UI is unnecessary and error-prone because server converts them back to list. Possible problems with values containing commas may occur. All occurrences of CSV joining were therefore removed.
https://fedorahosted.org/freeipa/ticket/2227
Diffstat (limited to 'install/ui/widget.js')
-rw-r--r-- | install/ui/widget.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js index d288a9bf..f906d165 100644 --- a/install/ui/widget.js +++ b/install/ui/widget.js @@ -1916,7 +1916,7 @@ IPA.attribute_table_widget = function(spec) { on_error: on_error }); - command.set_option(that.attribute_name, values.join(',')); + command.set_option(that.attribute_name, values); var additional_options = that.get_additional_options(); for (var i=0; i<additional_options.length; i++) { |