From 8feab547efbaefdf60042160406a905032a0bb63 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 26 Jan 2011 20:35:19 -0500 Subject: [PATCH] Fix dactyl.open with string params. --HG-- branch : key-processing --- common/content/dactyl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 50339829..7e5285b3 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -1131,7 +1131,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { }); params = params || {}; - if (isArray(params)) + if (isString(params)) params = { where: params }; let flags = 0;