From 31c8d5e7f721937c06cfb10eaed4b59b6499ec11 Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Thu, 6 Jun 2002 11:04:39 +0000 Subject: [PATCH] The GET request of the method "RemoveAllPredefined" had a separator at the end. Fixed. --- helm/uwobo-panel/control.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/uwobo-panel/control.js b/helm/uwobo-panel/control.js index d94b9b2ce..6b13ab8a0 100644 --- a/helm/uwobo-panel/control.js +++ b/helm/uwobo-panel/control.js @@ -142,7 +142,7 @@ function removeAllPredefined() var request = ""; for (i = 1; i < length; i++) - request += getPredefinedStylesheetKey(i) + ","; + request += getPredefinedStylesheetKey(i) + (i == length - 1 ? "" : ","); top.result.location.replace(getUwoboURL() + "remove?keys=" + request); } } -- 2.39.2