aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_register.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/ucp/ucp_register.php')
-rw-r--r--phpBB/includes/ucp/ucp_register.php13
1 files changed, 1 insertions, 12 deletions
diff --git a/phpBB/includes/ucp/ucp_register.php b/phpBB/includes/ucp/ucp_register.php
index 3289273658..9a15967bae 100644
--- a/phpBB/includes/ucp/ucp_register.php
+++ b/phpBB/includes/ucp/ucp_register.php
@@ -314,24 +314,13 @@ class ucp_register
'user_inactive_time' => $user_inactive_time,
);
- $user_notifications_data = array(
- array(
- 'item_type' => 'notification.type.post',
- 'method' => 'notification.method.email',
- ),
- array(
- 'item_type' => 'notification.type.topic',
- 'method' => 'notification.method.email',
- ),
- );
-
if ($config['new_member_post_limit'])
{
$user_row['user_new'] = 1;
}
// Register user...
- $user_id = user_add($user_row, $cp_data, $user_notifications_data);
+ $user_id = user_add($user_row, $cp_data);
// This should not happen, because the required variables are listed above...
if ($user_id === false)