diff options
author | friendica <info@friendica.com> | 2013-02-10 19:34:02 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-10 19:34:02 -0800 |
commit | b92cdd2a271966fb7d7bf78b100140a5c65e6fde (patch) | |
tree | ece140bcbc3e5b7fa6e28526cba3f4b9f3b5d9ab /mod/ping.php | |
parent | 08bc8ed87649967e438f78983f959cd71e6c6a5b (diff) | |
download | volse-hubzilla-b92cdd2a271966fb7d7bf78b100140a5c65e6fde.tar.gz volse-hubzilla-b92cdd2a271966fb7d7bf78b100140a5c65e6fde.tar.bz2 volse-hubzilla-b92cdd2a271966fb7d7bf78b100140a5c65e6fde.zip |
prevent repeated channel names in system notifications
Diffstat (limited to 'mod/ping.php')
-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 b0a2e4b1d..827992c65 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -119,7 +119,7 @@ function ping_init(&$a) { foreach($z as $zz) { $notifs[] = array( 'notify_link' => $a->get_baseurl() . '/notify/view/' . $zz['id'], - 'name' => $zz['name'], + 'name' => '', // not required here because the name is in the message 'url' => $zz['url'], 'photo' => $zz['photo'], 'when' => relative_date($zz['date']), |