From: Joey Schulze Date: Wed, 2 Oct 2019 12:47:05 +0000 (+0200) Subject: No need to decode from UTF-8 X-Git-Url: https://git.infodrom.org/?p=infodrom.org%2Fservice.infodrom.org;a=commitdiff_plain;h=1e7471c4781c92d242043e069264f1e51c423de6 No need to decode from UTF-8 --- diff --git a/class/calendar_item_log.class.php b/class/calendar_item_log.class.php index 4d361b2..8a5464c 100644 --- a/class/calendar_item_log.class.php +++ b/class/calendar_item_log.class.php @@ -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']); } }