summaryrefslogtreecommitdiffstats
path: root/install/ui/details.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-02-29 18:53:11 +0100
committerEndi S. Dewata <edewata@redhat.com>2012-03-02 11:45:21 -0600
commit31eebda584d556454104a8fbf26974b6b49d9589 (patch)
tree5a883895aed910941817a7cd750e5dbbae23e679 /install/ui/details.js
parentafad0775e16e52aa2d6637e809ad748ace838bea (diff)
downloadfreeipa-31eebda584d556454104a8fbf26974b6b49d9589.tar.gz
freeipa-31eebda584d556454104a8fbf26974b6b49d9589.tar.xz
freeipa-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/details.js')
-rw-r--r--install/ui/details.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/install/ui/details.js b/install/ui/details.js
index d68ebd07c..8d5dcff68 100644
--- a/install/ui/details.js
+++ b/install/ui/details.js
@@ -844,8 +844,6 @@ IPA.command_builder = function() {
if (field.metadata.primary_key) return;
if (values.length === 1) {
command.set_option(name, values[0]);
- } else if (field.join) {
- command.set_option(name, values.join(','));
} else {
command.set_option(name, values);
}