diaspora confirm cleanup

This commit is contained in:
Friendika 2011-08-15 19:31:45 -07:00
parent f7a1674cf6
commit 8e3506048a
2 changed files with 6 additions and 4 deletions

View file

@ -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,