I have a calendar with multiselect option (multiple checkboxes for each event). When I check some of the boxes, save the event, refresh the page and then move the event around to different places, most of the times I lose the checked boxes (the data gets deleted from the corresponding “event_fruit” table also)
So I went into “crosslink_connector.php” and commented the line in the afterProcessing function:
[…]
case “updated”:
//$this->link->delete($master_key);
case “inserted”:
[…]
The problem seems to be fixed now, but I’m wondering, what does that line do, and what are the possible side effects to me commenting it?
Thanks!