From 58c1950566f9fb03b61461f40074e47614113194 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 23 May 2011 17:48:37 -0500 Subject: Fixed URL parameter parsing. The $.bbq.getState() invocations have been modified not to coerce URL parameter values to avoid parsing error. Ticket #1208 --- install/ui/rule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/ui/rule.js') diff --git a/install/ui/rule.js b/install/ui/rule.js index 8c69eca8b..08c27e6d1 100644 --- a/install/ui/rule.js +++ b/install/ui/rule.js @@ -134,7 +134,7 @@ IPA.rule_association_table_widget = function (spec) { that.add = function(values, on_success, on_error) { - var pkey = $.bbq.getState(that.entity_name + '-pkey', true) || ''; + var pkey = $.bbq.getState(that.entity_name+'-pkey'); var batch = IPA.batch_command({ 'on_success': on_success, -- cgit