diff options
author | friendica <info@friendica.com> | 2012-04-22 15:41:47 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-22 15:41:47 -0700 |
commit | 3c6c5d4749852eaf8b4111cd2f18fe9c4d4ad71b (patch) | |
tree | 09fcca623133de7a6d41eacf3b680a0a0f75ea64 | |
parent | e74ae8b0310fd4b638ff5da674ba16b47fc5f294 (diff) | |
parent | 27c23229c4d22d4f477cb8665725ec681e70666a (diff) | |
download | volse-hubzilla-3c6c5d4749852eaf8b4111cd2f18fe9c4d4ad71b.tar.gz volse-hubzilla-3c6c5d4749852eaf8b4111cd2f18fe9c4d4ad71b.tar.bz2 volse-hubzilla-3c6c5d4749852eaf8b4111cd2f18fe9c4d4ad71b.zip |
Merge pull request #257 from CatoTH/master
Add a hook in mod/ping.php
-rw-r--r-- | mod/ping.php | 2 |
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) |