aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorMaât <maat-ml@vilarem.net>2011-07-03 17:35:11 +0200
committerMaât <maat-ml@vilarem.net>2011-07-03 17:35:11 +0200
commitc13fcc4cb41adc83a70b5f01490b5b91c48f7004 (patch)
treeaa2b7620ff5f69ae6cc80e952ef3dc5a753e5548 /phpBB/includes/functions_user.php
parent9ebfe33f289b16148ec95cd4d2a059b5ca56cb2c (diff)
downloadforums-c13fcc4cb41adc83a70b5f01490b5b91c48f7004.tar
forums-c13fcc4cb41adc83a70b5f01490b5b91c48f7004.tar.gz
forums-c13fcc4cb41adc83a70b5f01490b5b91c48f7004.tar.bz2
forums-c13fcc4cb41adc83a70b5f01490b5b91c48f7004.tar.xz
forums-c13fcc4cb41adc83a70b5f01490b5b91c48f7004.zip
Config default tweak to enable default notification
People disliking being spammed will have to opt out :-/ See https://bugs.mageia.org/show_bug.cgi?id=1188
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index f2c80705ba..3f4203c554 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -213,7 +213,10 @@ function user_add($user_row, $cp_data = false)
'user_full_folder' => PRIVMSGS_NO_BOX,
'user_emailtime' => 0,
- 'user_notify' => 0,
+ // Mageia Config tweak [ https://bugs.mageia.org/show_bug.cgi?id=1188 ]
+ 'user_notify' => 1,
+ // Mageia Config tweak
+
'user_notify_pm' => 1,
'user_notify_type' => NOTIFY_EMAIL,
'user_allow_pm' => 1,
@@ -3602,4 +3605,4 @@ function remove_newly_registered($user_id, $user_data = false)
return $user_data['group_id'];
}
-?> \ No newline at end of file
+?>