From: Michael Vogel Date: Sat, 12 Mar 2016 08:21:13 +0000 (+0100) Subject: The name in the notifications has to be double encoded X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=14a2aa552a55c238d4a20d8034bee7604fe2b0e4;p=friendica.git The name in the notifications has to be double encoded --- diff --git a/mod/ping.php b/mod/ping.php index 2eb94576b3..544aa446bb 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -207,7 +207,7 @@ function ping_init(&$a) { call_hooks('ping_xmlize', $n); $notsxml = '%s'."\n"; return sprintf ( $notsxml, intval($n['id']), - xmlify($n['href']), xmlify($n['name']), xmlify($n['url']), xmlify($n['photo']), + xmlify($n['href']), xmlify(xmlify($n['name'])), xmlify($n['url']), xmlify($n['photo']), xmlify(relative_date($n['date'])), xmlify($n['seen']), xmlify(strtotime($local_time)), xmlify($n['message']) );