diff options
author | Devlon Duthie <duthied@gmail.com> | 2011-10-02 18:39:53 -0500 |
---|---|---|
committer | Devlon Duthie <duthied@gmail.com> | 2011-10-02 18:39:53 -0500 |
commit | 8e38fe6f47db54e7af12707130641e8de9f3eeb9 (patch) | |
tree | 5b2b4fadf9adc716bf7c94dc864c9403007a8c84 /mod/ping.php | |
parent | f6f5e5b99389019bdd6a3258de19cdda2d014b97 (diff) | |
parent | 7c1968907d26a66581d362475a6b557e53e159cb (diff) | |
download | volse-hubzilla-8e38fe6f47db54e7af12707130641e8de9f3eeb9.tar.gz volse-hubzilla-8e38fe6f47db54e7af12707130641e8de9f3eeb9.tar.bz2 volse-hubzilla-8e38fe6f47db54e7af12707130641e8de9f3eeb9.zip |
Merge branch 'master' of http://github.com/friendika/Free-Friendika
Diffstat (limited to 'mod/ping.php')
-rw-r--r-- | mod/ping.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/ping.php b/mod/ping.php index 30f1dc837..544a42e14 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -114,7 +114,7 @@ function ping_init(&$a) { function xmlize($href, $name, $url, $photo, $date, $message){ $notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s">%s</note>'; return sprintf ( $notsxml, - $href, $name, $url, $photo, $date, $message + xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($message) ); } |