From 246683331b2f3aad5addfbb2cf063dd5237b08c7 Mon Sep 17 00:00:00 2001 From: nathangray Date: Thu, 21 Jul 2016 10:42:47 -0600 Subject: [PATCH] Fix Uncaught TypeError: this.getArrayMgr is not a function when accessing calendar through SiteMgr --- calendar/js/et2_widget_event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/js/et2_widget_event.js b/calendar/js/et2_widget_event.js index 9affd80764..1780de83d6 100644 --- a/calendar/js/et2_widget_event.js +++ b/calendar/js/et2_widget_event.js @@ -925,7 +925,7 @@ et2_calendar_event.owner_check = function owner_check(event, parent, owner_too) } else { - options = this.getArrayMgr("sel_options").getRoot().getEntry('owner'); + options = parent.getArrayMgr("sel_options").getRoot().getEntry('owner'); } if(event.participants && parent.options.owner) {