From: Michael J. Rubinsky Date: Fri, 22 Jan 2010 23:58:39 +0000 (-0500) Subject: Remove extra slash now that this url comes from Horde::getServiceLink X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b074e69e9675764638ff76757832ad9ea139dfbc;p=horde.git Remove extra slash now that this url comes from Horde::getServiceLink Get rid of these locally defined variables that don't seem to be used --- diff --git a/kronolith/js/kronolith.js b/kronolith/js/kronolith.js index 88d4189eb..a609e057b 100644 --- a/kronolith/js/kronolith.js +++ b/kronolith/js/kronolith.js @@ -63,13 +63,11 @@ KronolithCore = { * instead of sending the action to the ajax handler. */ doAction: function(action, params, callback, opts) { - var b, tmp = {}; - opts = Object.extend(this.doActionOpts, opts || {}); params = $H(params); action = action.startsWith('*') ? action.substring(1) - : Kronolith.conf.URI_AJAX + '/' + action; + : Kronolith.conf.URI_AJAX + action; if (Kronolith.conf.SESSION_ID) { params.update(Kronolith.conf.SESSION_ID.toQueryParams()); }