Author Topic: 1.4.1 - ICal-Import incorect specialchars - re-upped  (Read 4914 times)

moc

  • Newbie
  • *
  • Posts: 2
    • View Profile
1.4.1 - ICal-Import incorect specialchars - re-upped
« on: July 13, 2009, 03:41:59 pm »
since the issue still persists in 1.4.1, i'd like to bring the following thread back to mind:
ICal-Import incorect specialchars

a fix would be really appreciated.
TIA.

alvarotm01

  • Administrator
  • Sr. Member
  • *****
  • Posts: 335
    • View Profile
    • Email
Re: 1.4.1 - ICal-Import incorect specialchars - re-upped
« Reply #1 on: July 14, 2009, 10:52:53 am »
Hi,
this bug is fixed for next release,

fix: add this lines after line 24 of "/environment/classes/event/CalFormatUtilities.php"
Code: [Select]
$data['subject'] = html_entity_decode($data['subject']);
$data['description'] = html_entity_decode($data['description']);
$data['description'] = str_replace('<br />', "\n", $data['description']);

greetings

moc

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: 1.4.1 - ICal-Import incorect specialchars - re-upped
« Reply #2 on: July 14, 2009, 03:04:40 pm »
whoo, that was quick ... thanks very much. i'll wait for the next release and test it then.