diff options
author | Friendika <info@friendika.com> | 2011-10-13 01:12:03 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-13 01:12:03 -0700 |
commit | d60505ffb088048b7ebcb7e44a15cd454cbd6f1e (patch) | |
tree | 49c3ac47b838c89be10faeaad59068d3c4594af5 | |
parent | 2911bf9434cb1a061ff32d41894ee0dd09ed3993 (diff) | |
download | volse-hubzilla-d60505ffb088048b7ebcb7e44a15cd454cbd6f1e.tar.gz volse-hubzilla-d60505ffb088048b7ebcb7e44a15cd454cbd6f1e.tar.bz2 volse-hubzilla-d60505ffb088048b7ebcb7e44a15cd454cbd6f1e.zip |
missing arg xmlize x is friends with y
-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 23b332ee0..caa78f9b7 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -165,7 +165,7 @@ function ping_init(&$a) { } if (count($friends)){ foreach ($friends as $i) { - echo xmlize($a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'],$i['author-link'], $i['author-avatar'], relative_date($i['created']), sprintf( t("{0} is now friends with %s"), $i['fname'] ) ); + echo xmlize($a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'],$i['author-name'],$i['author-link'], $i['author-avatar'], relative_date($i['created']), sprintf( t("{0} is now friends with %s"), $i['fname'] ) ); }; } if (count($posts)){ |