diff options
author | 3D-I <marktravai@gmail.com> | 2019-02-23 01:56:03 +0100 |
---|---|---|
committer | 3D-I <marktravai@gmail.com> | 2019-02-23 02:02:51 +0100 |
commit | e315ea90b8f0d5763cd657090cadc99f221e8b44 (patch) | |
tree | e09f2fad7a835bd0631ce328d7a28af7fa522543 /phpBB/includes | |
parent | 871875d9aa3d0b0a17a0eb1936323d5737a438f5 (diff) | |
download | forums-e315ea90b8f0d5763cd657090cadc99f221e8b44.tar forums-e315ea90b8f0d5763cd657090cadc99f221e8b44.tar.gz forums-e315ea90b8f0d5763cd657090cadc99f221e8b44.tar.bz2 forums-e315ea90b8f0d5763cd657090cadc99f221e8b44.tar.xz forums-e315ea90b8f0d5763cd657090cadc99f221e8b44.zip |
[ticket/15975] Remove user notification data upon user deletion
PHPBB3-15975
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions_user.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 26bb987561..7549ce4d58 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -684,7 +684,8 @@ function user_delete($mode, $user_ids, $retain_username = true) PRIVMSGS_RULES_TABLE, $phpbb_container->getParameter('tables.auth_provider_oauth_token_storage'), $phpbb_container->getParameter('tables.auth_provider_oauth_states'), - $phpbb_container->getParameter('tables.auth_provider_oauth_account_assoc') + $phpbb_container->getParameter('tables.auth_provider_oauth_account_assoc'), + $phpbb_container->getParameter('tables.user_notifications') ]; // Ignore errors on deleting from non-existent tables, e.g. when migrating |