diff options
author | Friendika <info@friendika.com> | 2011-10-09 15:50:49 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-09 15:50:49 -0700 |
commit | 0657baa0b278baf0922f63fb6bbc7cbd77dacb54 (patch) | |
tree | 0676b73738c9e4da1e0c20b41d6826b5bda075ea | |
parent | 9f4d3bf5672af34d7b12a7d95da912205f3b9789 (diff) | |
parent | 2f98de1e7455a46ebe8320589d57399279058387 (diff) | |
download | volse-hubzilla-0657baa0b278baf0922f63fb6bbc7cbd77dacb54.tar.gz volse-hubzilla-0657baa0b278baf0922f63fb6bbc7cbd77dacb54.tar.bz2 volse-hubzilla-0657baa0b278baf0922f63fb6bbc7cbd77dacb54.zip |
Merge branch 'pull'
-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 239dd93e7..546c46f16 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -118,7 +118,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) ); } |