diff options
author | friendica <info@friendica.com> | 2011-12-29 00:23:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-29 00:23:05 -0800 |
commit | c735582eadc05d566057d00c685ec60c6e1164d9 (patch) | |
tree | 4cd99ac286f517f08edf5591bf19ed2dcfcb41e4 /mod/notifications.php | |
parent | da21473c3434808f91953ba14f97c647b8dc8895 (diff) | |
download | volse-hubzilla-c735582eadc05d566057d00c685ec60c6e1164d9.tar.gz volse-hubzilla-c735582eadc05d566057d00c685ec60c6e1164d9.tar.bz2 volse-hubzilla-c735582eadc05d566057d00c685ec60c6e1164d9.zip |
hide contacts on approval
Diffstat (limited to 'mod/notifications.php')
-rw-r--r-- | mod/notifications.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/notifications.php b/mod/notifications.php index 5733e6e57..910b84e32 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -141,6 +141,7 @@ function notifications_content(&$a) { '$photo' => ((x($rr,'fphoto')) ? $rr['fphoto'] : "images/default-profile.jpg"), '$fullname' => $rr['fname'], '$url' => $rr['furl'], + '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$knowyou' => $knowyou, '$approve' => t('Approve'), '$note' => $rr['note'], @@ -185,6 +186,7 @@ function notifications_content(&$a) { '$contact_id' => $rr['contact-id'], '$photo' => ((x($rr,'photo')) ? $rr['photo'] : "images/default-profile.jpg"), '$fullname' => $rr['name'], + '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$url' => $rr['url'], '$knowyou' => $knowyou, '$approve' => t('Approve'), |