diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-01-22 19:27:56 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-01-22 19:27:56 +0100 |
commit | 30fcda7576681ff5e311f720a8d3a73ac808ae82 (patch) | |
tree | 3a404019a2997dcfc852e1716fd68c13ba14a6df /mod | |
parent | b5ec47590673ff9d147de1952d357b34e405a131 (diff) | |
download | volse-hubzilla-30fcda7576681ff5e311f720a8d3a73ac808ae82.tar.gz volse-hubzilla-30fcda7576681ff5e311f720a8d3a73ac808ae82.tar.bz2 volse-hubzilla-30fcda7576681ff5e311f720a8d3a73ac808ae82.zip |
nav: fix intro notification url, fix "See all notifications" url and make it translatable
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/ping.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/ping.php b/mod/ping.php index 35f6c53ae..db68332bd 100755 --- a/mod/ping.php +++ b/mod/ping.php @@ -145,7 +145,7 @@ function ping_init(&$a) { echo ' <notif count="'.$tot.'">'; if ($intro>0){ foreach ($intros as $i) { - echo xmlize( $a->get_baseurl().'/notifications/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), t("{0} wants to be your friend") ); + echo xmlize( $a->get_baseurl().'/notifications/intros/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), t("{0} wants to be your friend") ); }; } if ($mail>0){ |