1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/14754] Use dedicated table to stop receiving notifications

PHPBB3-14754
This commit is contained in:
Jakub Senko
2018-10-18 09:35:16 +02:00
committed by Marc Alexander
parent a3e0117ff0
commit f3664b07d2
6 changed files with 121 additions and 73 deletions

View File

@@ -130,11 +130,7 @@ abstract class phpbb_notification_submit_post_base extends phpbb_database_test_c
$phpbb_container->setParameter('tables.notifications', 'phpbb_notifications');
$phpbb_container->setParameter('tables.user_notifications', 'phpbb_user_notifications');
$phpbb_container->setParameter('tables.notification_types', 'phpbb_notification_types');
$phpbb_container->setParameter('tables.topics_watch', 'phpbb_topics_watch');
$phpbb_container->setParameter('tables.topics_track', 'phpbb_topics_track');
$phpbb_container->setParameter('tables.posts', 'phpbb_posts');
$phpbb_container->setParameter('tables.forums_watch', 'phpbb_forums_watch');
$phpbb_container->setParameter('tables.forums_track', 'phpbb_forums_track');
$phpbb_container->setParameter('tables.email_notifications', 'phpbb_email_notifications');
$phpbb_container->set('content.visibility', new \phpbb\content_visibility($auth, $config, $phpbb_dispatcher, $db, $user, $phpbb_root_path, $phpEx, FORUMS_TABLE, POSTS_TABLE, TOPICS_TABLE, USERS_TABLE));
$phpbb_container->compile();