From e61d0ada043ece5c22a3907138dab3cd07932c3c Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Mon, 4 Jun 2012 12:29:27 +0200 Subject: Removal of illegal options in association dialog Association dialogs were using non-existent options for find commands. It causes error when #2509 is implemented. Now when creating a find command a check for options existence is performend. Option is not used if not present in metadata. It fixes the issue. https://fedorahosted.org/freeipa/ticket/2760 --- install/ui/association.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'install/ui/association.js') diff --git a/install/ui/association.js b/install/ui/association.js index ab43518f6..6a1978061 100644 --- a/install/ui/association.js +++ b/install/ui/association.js @@ -201,7 +201,11 @@ IPA.association_adder_dialog = function(spec) { var relationship = relationships[other_attribute_member]; if (relationship) { var param_name = relationship[2] + that.entity.name; - options[param_name] = that.pkey; + var cmd_opt = IPA.get_command_option(that.other_entity.name + '_find', + param_name); + if (cmd_opt) { + options[param_name] = that.pkey; + } } IPA.command({ -- cgit