aboutsummaryrefslogtreecommitdiffstats
path: root/mod/ping.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-22 16:25:02 -0700
committerfriendica <info@friendica.com>2012-04-22 16:25:02 -0700
commit724e1d15d0441fa169598397416d1e470e539d02 (patch)
treeea3df9b38646ed1d6343426b84cf50a8a3e3004c /mod/ping.php
parent00cb7f9efb4826a6ad5c0791f26bc5e8db644f77 (diff)
parentc0dffa7442abdcaee8bcc2eb97a3ed71d60ce554 (diff)
downloadvolse-hubzilla-724e1d15d0441fa169598397416d1e470e539d02.tar.gz
volse-hubzilla-724e1d15d0441fa169598397416d1e470e539d02.tar.bz2
volse-hubzilla-724e1d15d0441fa169598397416d1e470e539d02.zip
Merge https://github.com/friendica/friendica into pull
Diffstat (limited to 'mod/ping.php')
-rw-r--r--mod/ping.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/ping.php b/mod/ping.php
index e911aaf1f..63aaa0f45 100644
--- a/mod/ping.php
+++ b/mod/ping.php
@@ -134,6 +134,8 @@ function ping_init(&$a) {
function xmlize($href, $name, $url, $photo, $date, $seen, $message){
+ $data = array('href' => &$href, 'name' => &$name, 'url'=>&$url, 'photo'=>&$photo, 'date'=>&$date, 'seen'=>&$seen, 'messsage'=>&$message);
+ call_hooks('ping_xmlize', $data);
$notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s" seen="%s" >%s</note>';
return sprintf ( $notsxml,
xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($seen), xmlify($message)