aboutsummaryrefslogtreecommitdiffstats
path: root/mod/ping.php
diff options
context:
space:
mode:
authorDevlon Duthie <duthied@gmail.com>2011-10-09 00:02:24 -0500
committerDevlon Duthie <duthied@gmail.com>2011-10-09 00:02:24 -0500
commitc49ab66be8dc0c447bc7db6596cfd5110ee550a7 (patch)
treef194c2ccfabb421f9c22eb622d52c82359fd96b6 /mod/ping.php
parent0e401b5ad85ff8be41a3cfc4a9d7936da56ba157 (diff)
downloadvolse-hubzilla-c49ab66be8dc0c447bc7db6596cfd5110ee550a7.tar.gz
volse-hubzilla-c49ab66be8dc0c447bc7db6596cfd5110ee550a7.tar.bz2
volse-hubzilla-c49ab66be8dc0c447bc7db6596cfd5110ee550a7.zip
fix for comment on line 117 from github
Diffstat (limited to 'mod/ping.php')
-rw-r--r--mod/ping.php2
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)
);
}