If there is a single-quote in the event tile, the over_text doen't work for that date on the calendar (generates a javascript error).

Comments

nedjo’s picture

Thanks, added escaping to message generation as follows:

  $title = str_replace("'", "\'", $title);
  $caption = str_replace("'", "\'", $caption);

This should fix problem, please reply if not.

skorch’s picture

Looks good. Thanks

Anonymous’s picture