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/navigation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/ui/navigation.js') diff --git a/install/ui/navigation.js b/install/ui/navigation.js index 837cef18..37957391 100644 --- a/install/ui/navigation.js +++ b/install/ui/navigation.js @@ -88,7 +88,7 @@ IPA.navigation = function(spec) { }; that.get_state = function(key) { - return $.bbq.getState(key, true); + return $.bbq.getState(key); }; that.remove_state = function(key) { -- cgit