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/dns.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/dns.js')
-rw-r--r-- | install/ui/dns.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ui/dns.js b/install/ui/dns.js index 4182074a..4cc6d4c5 100644 --- a/install/ui/dns.js +++ b/install/ui/dns.js @@ -1613,7 +1613,7 @@ IPA.dns.record_type_table_widget = function(spec) { }); var record_name = that.dnstype.toLowerCase()+'record'; - command.set_option(record_name, values.join(',')); + command.set_option(record_name, values); command.set_option('structured', true); command.execute(); |