From d3b9f1529768e96c18dc8ce2e092c46e55495826 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Fri, 16 Aug 2013 11:58:22 +0000 Subject: [PATCH] finish variable rename: mkwsSearchForm.query -> mkwsSearchForm.mkwsQuery this fix the issue that you couldn't run limitQuery for Authors and Subjects --- tools/htdocs/mkws.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 2332894..e90ff29 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -310,7 +310,7 @@ function loadSelect () // limit the query after clicking the facet function limitQuery (field, value) { - document.mkwsSearchForm.query.value += ' and ' + field + '="' + value + '"'; + document.mkwsSearchForm.mkwsQuery.value += ' and ' + field + '="' + value + '"'; onFormSubmitEventHandler(); } -- 1.7.10.4