
11-18-2010, 06:14 AM
|
|
|
Join Date: Jun 2002
Posts: 1,346
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
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.
|
thanks for the fix.
|