From 498a2eac3607d67d1dbac5233cede686b47b3e11 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 7 Jul 2007 23:05:24 +0000 Subject: [PATCH] r1567: In NotificationCenter::finalize() tell the XML parser to use utf8 --- includes/class_notification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class_notification.php b/includes/class_notification.php index ed4c3b2..38cfafb 100644 --- a/includes/class_notification.php +++ b/includes/class_notification.php @@ -591,7 +591,7 @@ class NotificationCenter $parts = implode("\n\n", $noticelist); eval('$email = "' . $this->registry->template->fetch(FetchEmailPath('bugnotification.xml', $this->_localeFromUserId($userid))) . '";'); - $email = $this->registry->xml->parse($email); + $email = $this->registry->xml->parse($email, true); $this->registry->mail->setSubject($email['email']['subject']['value']); $this->registry->mail->setBodyText($email['email']['bodyText']['value']); -- 2.22.5