From: Claudio Sacerdoti Coen Date: Thu, 6 Jun 2002 11:04:39 +0000 (+0000) Subject: The GET request of the method "RemoveAllPredefined" had a separator at the end. X-Git-Tag: V_0_3_0_debian_8~62 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=31c8d5e7f721937c06cfb10eaed4b59b6499ec11;p=helm.git The GET request of the method "RemoveAllPredefined" had a separator at the end. Fixed. --- 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); } }