aboutsummaryrefslogtreecommitdiffstats
path: root/mod/settings.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-07-12 05:09:07 -0700
committerFriendika <info@friendika.com>2011-07-12 05:09:07 -0700
commit706b6e8c84be332ff8310fffe13c83e784e46904 (patch)
treee27cd5322a953a925a21381f5cf84f2b02ffef11 /mod/settings.php
parent55bbe2108abeb69d55eb2fa8a9a472af7b2251b1 (diff)
downloadvolse-hubzilla-706b6e8c84be332ff8310fffe13c83e784e46904.tar.gz
volse-hubzilla-706b6e8c84be332ff8310fffe13c83e784e46904.tar.bz2
volse-hubzilla-706b6e8c84be332ff8310fffe13c83e784e46904.zip
email notifications not working - unable to change notification settings
Diffstat (limited to 'mod/settings.php')
-rw-r--r--mod/settings.php15
1 files changed, 5 insertions, 10 deletions
diff --git a/mod/settings.php b/mod/settings.php
index e11555687..844b06a71 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -435,11 +435,6 @@ function settings_content(&$a) {
));
-
-
-
-
-
$invisible = (((! $profile['publish']) && (! $profile['net-publish']))
? true : false);
@@ -527,11 +522,11 @@ function settings_content(&$a) {
'$h_not' => t('Notification Settings'),
'$lbl_not' => t('Send a notification email when:'),
- '$notify1' => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), ''),
- '$notify2' => array('notify1', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), ''),
- '$notify3' => array('notify1', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), ''),
- '$notify4' => array('notify1', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), ''),
- '$notify5' => array('notify1', t('You receive a private message'), ($notify & NOTIFY_MAIL), ''),
+ '$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, ''),
+ '$notify3' => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
+ '$notify4' => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
+ '$notify5' => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),