diff options
Diffstat (limited to 'mod/notifications.php')
-rw-r--r-- | mod/notifications.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mod/notifications.php b/mod/notifications.php index 07403d4b4..8c32ee862 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -129,9 +129,11 @@ function notifications_content(&$a) { $knowyou = ''; $dfrn_text = ''; - if($rr['network'] === NETWORK_DFRN) { - $knowyou = t('Claims to be known to you: ') . (($rr['knowyou']) ? t('yes') : t('no')); - + if($rr['network'] === NETWORK_DFRN || $rr['network'] === NETWORK_DIASPORA) { + if($rr['network'] === NETWORK_DFRN) + $knowyou = t('Claims to be known to you: ') . (($rr['knowyou']) ? t('yes') : t('no')); + else + $knowyou = ''; $dfrn_text = replace_macros($dfrn_tpl,array( '$intro_id' => $rr['intro_id'], '$friend_selected' => $friend_selected, |