From b92cdd2a271966fb7d7bf78b100140a5c65e6fde Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 10 Feb 2013 19:34:02 -0800 Subject: [PATCH] prevent repeated channel names in system notifications --- mod/ping.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']),