From: Jan Schneider Date: Thu, 18 Feb 2010 22:33:19 +0000 (+0100) Subject: Fix method name. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=90f4a1f9dbfb98e45f9fac7deb71dc3c70eed4ae;p=horde.git Fix method name. --- diff --git a/kronolith/js/kronolith.js b/kronolith/js/kronolith.js index 0987ddbbf..a22ed8a88 100644 --- a/kronolith/js/kronolith.js +++ b/kronolith/js/kronolith.js @@ -2028,13 +2028,13 @@ KronolithCore = { { if ($('kronolithCalendarDialog')) { RedBox.showHtml($('kronolithCalendarDialog').show()); - this.editCalendar(calendar); + this.editCalendarCallback(calendar); } else { RedBox.loading(); this.doAction('ChunkContent', { chunk: 'calendar' }, function(r) { if (r.response.chunk) { RedBox.showHtml(r.response.chunk); - this.editCalendar(calendar); + this.editCalendarCallback(calendar); } else { this.closeRedBox(); } @@ -2048,7 +2048,7 @@ KronolithCore = { * * @param string calendar Calendar type and calendar id, separated by '|'. */ - editCalendar: function(calendar) + editCalendarCallback: function(calendar) { calendar = calendar.split('|'); var type = calendar[0];