Quote:
Originally Posted by BBR-APBT
It is supported why should I remove it. If I remove the supported tag it will never be upgraded. I am willing to upgrade it as soon as I find the problem. How ever I can not find the issue. My site only runs on one calendar so it runs perfect for me. How ever I am willing to fix the issue with multiple calendars. I just need to find and fix the error. Which I can not find at this current point. I know what the error is and what is causing it just can't find a proper fix which does not cause more errors.
It also says beta which means it may not work fully to your expectations and it may have bugs. Let alone its hard to work on things for vb4 since they keep making changes. I expect more issues with further upgrades of vb4. That is another reason I am not rushing to fix all my mods all these patches and vb4 versions it always breaks things.
|
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.