No need to decode from UTF-8
authorJoey Schulze <joey@infodrom.org>
Wed, 2 Oct 2019 12:47:05 +0000 (14:47 +0200)
committerJoey Schulze <joey@infodrom.org>
Wed, 2 Oct 2019 12:47:05 +0000 (14:47 +0200)
class/calendar_item_log.class.php

index 4d361b2..8a5464c 100644 (file)
@@ -11,6 +11,6 @@ class Calendar_Item_Log extends DatabaseTable {
 
   public function ajaxEditComment(Array $data)
   {
-      return $this->modify('comment', utf8_decode($data['content']));
+      return $this->modify('comment', $data['content']);
   }
 }