aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/convertors/functions_phpbb20.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-11-02 12:49:28 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-11-02 13:25:46 +0100
commitcb8cd50495eb9d75cae8e7f1450033acfdb0b374 (patch)
tree22bc1832b3818e6335a71b4414fad223bb4bcc35 /phpBB/install/convertors/functions_phpbb20.php
parent85a12ce4f412fb307e6d23706936e493b8bc7b3d (diff)
downloadforums-cb8cd50495eb9d75cae8e7f1450033acfdb0b374.tar
forums-cb8cd50495eb9d75cae8e7f1450033acfdb0b374.tar.gz
forums-cb8cd50495eb9d75cae8e7f1450033acfdb0b374.tar.bz2
forums-cb8cd50495eb9d75cae8e7f1450033acfdb0b374.tar.xz
forums-cb8cd50495eb9d75cae8e7f1450033acfdb0b374.zip
[ticket/11031] Correctly add groups to teampage
PHPBB3-11031
Diffstat (limited to 'phpBB/install/convertors/functions_phpbb20.php')
-rw-r--r--phpBB/install/convertors/functions_phpbb20.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/phpBB/install/convertors/functions_phpbb20.php b/phpBB/install/convertors/functions_phpbb20.php
index 4076fe2a78..29e5f7ab09 100644
--- a/phpBB/install/convertors/functions_phpbb20.php
+++ b/phpBB/install/convertors/functions_phpbb20.php
@@ -1933,3 +1933,43 @@ function phpbb_convert_timezone($timezone)
$timezone_migration = new \phpbb\db\migration\data\v310\timezone($config, $db, new \phpbb\db\tools($db), $phpbb_root_path, $phpEx, $table_prefix);
return $timezone_migration->convert_phpbb30_timezone($timezone, 0);
}
+
+function phpbb_add_notification_options($user_notify_pm)
+{
+ global $convert_row, $db;
+
+ $user_id = phpbb_user_id($convert_row['user_id']);
+ if ($user_id == ANONYMOUS)
+ {
+ return;
+ }
+
+ $rows = array();
+
+ $rows[] = array(
+ 'item_type' => 'post',
+ 'item_id' => 0,
+ 'user_id' => (int) $user_id,
+ 'notify' => 1,
+ 'method' => 'email',
+ );
+ $rows[] = array(
+ 'item_type' => 'topic',
+ 'item_id' => 0,
+ 'user_id' => (int) $user_id,
+ 'notify' => 1,
+ 'method' => 'email',
+ );
+ if ($user_notify_pm)
+ {
+ $rows[] = array(
+ 'item_type' => 'pm',
+ 'item_id' => 0,
+ 'user_id' => (int) $user_id,
+ 'notify' => 1,
+ 'method' => 'email',
+ );
+ }
+
+ $sql = $db->sql_multi_insert(USER_NOTIFICATIONS_TABLE, $rows);
+}