From: Jan Schneider Date: Wed, 4 Nov 2009 15:20:23 +0000 (+0100) Subject: This is no longer necessary with the slash separator. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=161bdcf3118adc29ca4a7823b47eb450a56a723b;p=horde.git This is no longer necessary with the slash separator. --- diff --git a/kronolith/js/kronolith.js b/kronolith/js/kronolith.js index 62c1820a8..70d65d255 100644 --- a/kronolith/js/kronolith.js +++ b/kronolith/js/kronolith.js @@ -1018,8 +1018,8 @@ KronolithCore = { _createElement = function(event) { var el = new Element('DIV', { 'id': event.value.nodeId, 'class': 'kronolithEvent' }) - .store('calendar', event.value.calendar.replace(/:/, '^')) - .store('eventid', event.key.replace(/:/, '^')); + .store('calendar', event.value.calendar) + .store('eventid', event.key); if (!Object.isUndefined(event.value.aj)) { el.store('ajax', event.value.aj); } @@ -2205,7 +2205,7 @@ KronolithCore = { this.doAction('ListTopTags', {}, this._topTags); if (id) { RedBox.loading(); - this.doAction('GetEvent', { 'cal': calendar.replace(/\^/, ':'), 'id': id.replace(/\^/, ':') }, this._editEvent.bind(this)); + this.doAction('GetEvent', { 'cal': calendar, 'id': id }, this._editEvent.bind(this)); } else { var d = date ? this.parseDate(date) : new Date(); $('kronolithEventId').value = '';