aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Hößl <tobias@hoessl.eu>2012-04-22 13:28:54 +0000
committerTobias Hößl <tobias@hoessl.eu>2012-04-22 13:28:54 +0000
commit3116db1a74657f1f9f87ef91181104819d01fd95 (patch)
tree8444dfdd23b669527bb95cb29795000709d199a9
parentb885fedee17c575207f45eba251c7acd549bca9f (diff)
downloadvolse-hubzilla-3116db1a74657f1f9f87ef91181104819d01fd95.tar.gz
volse-hubzilla-3116db1a74657f1f9f87ef91181104819d01fd95.tar.bz2
volse-hubzilla-3116db1a74657f1f9f87ef91181104819d01fd95.zip
Add a hook
-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)