diff options
author | friendica <info@friendica.com> | 2012-07-19 21:09:40 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-19 21:09:40 -0700 |
commit | bf386749047731d3a7f47fd99f7dcc4e93ed7be7 (patch) | |
tree | 49168f1e7d3ca11f0b3622ca9129904af15608bf /mod/settings.php | |
parent | 6293c5e1cf53eeb6db487c74c6e4cec8a11148d4 (diff) | |
download | volse-hubzilla-bf386749047731d3a7f47fd99f7dcc4e93ed7be7.tar.gz volse-hubzilla-bf386749047731d3a7f47fd99f7dcc4e93ed7be7.tar.bz2 volse-hubzilla-bf386749047731d3a7f47fd99f7dcc4e93ed7be7.zip |
sync
Diffstat (limited to 'mod/settings.php')
-rw-r--r-- | mod/settings.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/settings.php b/mod/settings.php index ab63fa177..5e8c78ae7 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -373,6 +373,8 @@ function settings_post(&$a) { $notify += intval($_POST['notify6']); if(x($_POST,'notify7')) $notify += intval($_POST['notify7']); + if(x($_POST,'notify8')) + $notify += intval($_POST['notify8']); $email_changed = false; @@ -970,6 +972,7 @@ function settings_content(&$a) { '$notify5' => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''), '$notify6' => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''), '$notify7' => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''), + '$notify8' => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''), '$h_advn' => t('Advanced Account/Page Type Settings'), |