iCal icon indicating copy to clipboard operation
iCal copied to clipboard

Single quote gets encoded as &#039\; and shown in Google Calendar

Open lordspace opened this issue 9 years ago • 0 comments

image

Workaround:

...
$output = $vCalendar->render();
$output = str_replace( [ '&#039\;', ''' ], "'", $output );

lordspace avatar Aug 12 '16 18:08 lordspace