From 31eebda584d556454104a8fbf26974b6b49d9589 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Wed, 29 Feb 2012 18:53:11 +0100 Subject: 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 --- install/ui/widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/ui/widget.js') 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