Quote:
Originally Posted by burney
The problem is at line #256:
change
PHP Code:
for($lv_vb_eventforums_i = 0; $lv_vb_eventforums_i<count($lv_vb_eventforums_map); $lv_vb_eventforums_i+2)
with
PHP Code:
for($lv_vb_eventforums_i = 0; $lv_vb_eventforums_i<count($lv_vb_eventforums_map); $lv_vb_eventforums_i+=2)
This fixes the issue when inserting a new event in case of more than one calendar. There might be other issues as I haven't run a deep test yet.
|
Thank you very much Burney
This small fix made it possible that I now can use multiple calendars. Before this fix I was only able to use 1 calendar mapped to 1 forum only.