discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=3e517158a2f8d25797fc5811bff2b803501f33e4

commit 3e517158a2f8d25797fc5811bff2b803501f33e4
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Wed Feb 18 16:50:26 2015 -0500

    escape notification popup text...always
    
    fix T2053
---
 src/modules/notification/e_mod_popup.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/notification/e_mod_popup.c 
b/src/modules/notification/e_mod_popup.c
index 21684bb..182b90e 100644
--- a/src/modules/notification/e_mod_popup.c
+++ b/src/modules/notification/e_mod_popup.c
@@ -587,14 +587,14 @@ _notification_format_message(Popup_Data *popup)
 {
    Evas_Object *o = popup->theme;
    Eina_Strbuf *buf = eina_strbuf_new();
-   edje_object_part_text_set(o, "notification.text.title",
+   edje_object_part_text_unescaped_set(o, "notification.text.title",
                              popup->notif->summary);
    /* FIXME: Filter to only include allowed markup? */
    /* We need to replace \n with <br>. FIXME: We need to handle all the
    * newline kinds, and paragraph separator. ATM this will suffice. */
    eina_strbuf_append(buf, popup->notif->body);
    eina_strbuf_replace_all(buf, "\n", "<br/>");
-   edje_object_part_text_set(o, "notification.textblock.message",
+   edje_object_part_text_unescaped_set(o, "notification.textblock.message",
                              eina_strbuf_string_get(buf));
    eina_strbuf_free(buf);
 }

-- 


Reply via email to