aboutsummaryrefslogtreecommitdiffstats
path: root/mod/settings.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-12 21:10:32 -0700
committerfriendica <info@friendica.com>2012-04-12 21:10:32 -0700
commit972c01edb3009e835d7a5a0861867cea8c06283f (patch)
treeee74dd95c896bb3c2a367a4f4f897f6ee20a231e /mod/settings.php
parent32cd62ff0a69cbce29617ac943dbcb580e395b67 (diff)
downloadvolse-hubzilla-972c01edb3009e835d7a5a0861867cea8c06283f.tar.gz
volse-hubzilla-972c01edb3009e835d7a5a0861867cea8c06283f.tar.bz2
volse-hubzilla-972c01edb3009e835d7a5a0861867cea8c06283f.zip
profile change activities
Diffstat (limited to 'mod/settings.php')
-rw-r--r--mod/settings.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 12af99560..721468437 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -347,6 +347,7 @@ function settings_post(&$a) {
$hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
$hidewall = (($_POST['hidewall'] == 1) ? 1: 0);
$post_newfriend = (($_POST['post_newfriend'] == 1) ? 1: 0);
+ $post_profilechange = (($_POST['post_profilechange'] == 1) ? 1: 0);
$notify = 0;
@@ -430,6 +431,7 @@ function settings_post(&$a) {
set_pconfig(local_user(),'system','suggestme', $suggestme);
set_pconfig(local_user(),'system','post_newfriend', $post_newfriend);
+ set_pconfig(local_user(),'system','post_profilechange', $post_profilechange);
$r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `blockwall` = %d, `hidewall` = %d, `blocktags` = %d, `unkmail` = %d, `cntunkmail` = %d WHERE `uid` = %d LIMIT 1",
@@ -795,6 +797,9 @@ function settings_content(&$a) {
$post_newfriend = get_pconfig(local_user(), 'system','post_newfriend');
$post_newfriend = (($post_newfriend===false)? '0': $post_newfriend); // default if not set: 0
+ $post_profilechange = get_pconfig(local_user(), 'system','post_profilechange');
+ $post_profilechange = (($post_profilechange===false)? '0': $post_profilechange); // default if not set: 0
+
if(! strlen($a->user['timezone']))
$timezone = date_default_timezone_get();
@@ -881,9 +886,7 @@ function settings_content(&$a) {
));
- $activity_options = t('By default post a status message when:');
- $post_newfriend = array('post_newfriend', t('accepting a friend request'), $post_newfriend, '');
$invisible = (((! $profile['publish']) && (! $profile['net-publish']))
@@ -966,8 +969,9 @@ function settings_content(&$a) {
'$h_not' => t('Notification Settings'),
- '$activity_options' => $activity_options,
- '$post_newfriend' => $post_newfriend,
+ '$activity_options' => t('By default post a status message when:'),
+ '$post_newfriend' => array('post_newfriend', t('accepting a friend request'), $post_newfriend, ''),
+ '$post_profilechange' => array('post_profilechange', t('making an <em>interesting</em> profile change'), $post_profilechange, ''),
'$lbl_not' => t('Send a notification email when:'),
'$notify1' => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
'$notify2' => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),