diff options
author | friendica <info@friendica.com> | 2011-12-05 18:36:26 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-05 18:36:26 -0800 |
commit | 47f369e052d296f4a744c1508efc58f6168b7e8b (patch) | |
tree | 8cf84b2e8b409aed461e4f1e12c48d8cb2fe13d5 /mod/contacts.php | |
parent | d2e110abf5c530b6e4f2e32bf8812faa3fa131f2 (diff) | |
download | volse-hubzilla-47f369e052d296f4a744c1508efc58f6168b7e8b.tar.gz volse-hubzilla-47f369e052d296f4a744c1508efc58f6168b7e8b.tar.bz2 volse-hubzilla-47f369e052d296f4a744c1508efc58f6168b7e8b.zip |
hide some contacts from others
Diffstat (limited to 'mod/contacts.php')
-rw-r--r-- | mod/contacts.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index 59dafd51c..51c6920d3 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -78,6 +78,7 @@ function contacts_post(&$a) { } } + $hidden = intval($_POST['hidden']); $priority = intval($_POST['poll']); if($priority > 5 || $priority < 0) @@ -85,11 +86,12 @@ function contacts_post(&$a) { $info = escape_tags(trim($_POST['info'])); - $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `info` = '%s' - WHERE `id` = %d AND `uid` = %d LIMIT 1", + $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `info` = '%s', + `hidden` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($profile_id), intval($priority), dbesc($info), + intval($hidden), intval($contact_id), intval(local_user()) ); @@ -334,6 +336,7 @@ function contacts_content(&$a) { '$info' => $contact['info'], '$blocked' => (($contact['blocked']) ? t('Currently blocked') : ''), '$ignored' => (($contact['readonly']) ? t('Currently ignored') : ''), + '$hidden' => array('hidden', t('Hide this contact from others'), ($contact['hidden'] == 1), t('Replies/likes to your public posts <strong>may</strong> still be visible')), '$photo' => $contact['photo'], '$name' => $contact['name'], '$dir_icon' => $dir_icon, |