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/field.js | 1 - 1 file changed, 1 deletion(-) (limited to 'install/ui/field.js') 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 || []; -- cgit