diff options
author | friendica <info@friendica.com> | 2012-02-06 16:41:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-06 16:41:05 -0800 |
commit | 76308eca675505aa899ad647794b22b583bc698b (patch) | |
tree | ee93d5b917795457b1919212af4d34a16f3d9dc3 /mod/notifications.php | |
parent | 3d099bd99abe6431103112bfe1eafd96a61c6767 (diff) | |
download | volse-hubzilla-76308eca675505aa899ad647794b22b583bc698b.tar.gz volse-hubzilla-76308eca675505aa899ad647794b22b583bc698b.tar.bz2 volse-hubzilla-76308eca675505aa899ad647794b22b583bc698b.zip |
add toggle to choose sending "friends with" activity even if contact is not hidden
Diffstat (limited to 'mod/notifications.php')
-rwxr-xr-x | mod/notifications.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/notifications.php b/mod/notifications.php index 82d450a88..635639d89 100755 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -142,6 +142,8 @@ function notifications_content(&$a) { '$fullname' => $rr['fname'], '$url' => $rr['furl'], '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), + '$activity' => array('activity', t('Post a new friend activity'), 1, t('if applicable')), + '$knowyou' => $knowyou, '$approve' => t('Approve'), '$note' => $rr['note'], @@ -187,6 +189,7 @@ function notifications_content(&$a) { '$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), ''), + '$activity' => array('activity', t('Post a new friend activity'), 1, t('if applicable')), '$url' => $rr['url'], '$knowyou' => $knowyou, '$approve' => t('Approve'), |