summaryrefslogtreecommitdiffstats
path: root/install/ui/field.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/field.js
parentafad0775e16e52aa2d6637e809ad748ace838bea (diff)
downloadfreeipa.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/field.js')
-rw-r--r--install/ui/field.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/install/ui/field.js b/install/ui/field.js
index a6553b1a..5f073705 100644
--- a/install/ui/field.js
+++ b/install/ui/field.js
@@ -52,7 +52,6 @@ IPA.field = function(spec) {
that.enabled = spec.enabled === undefined ? true : spec.enabled;
that.undo = spec.undo === undefined ? true : spec.undo;
- that.join = spec.join;
that.metadata = spec.metadata;
that.validators = spec.validators || [];