diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-13 19:19:40 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-13 19:19:40 -0600 |
commit | 249f3c8885d461ae3981dfd7b62093c2175175e3 (patch) | |
tree | b078403292276199d70e0b782b5ebea57285d6e2 /phpBB/index.php | |
parent | 84284a9ccee7d5ccc658c3d1f751a5254b3b9175 (diff) | |
download | forums-249f3c8885d461ae3981dfd7b62093c2175175e3.tar forums-249f3c8885d461ae3981dfd7b62093c2175175e3.tar.gz forums-249f3c8885d461ae3981dfd7b62093c2175175e3.tar.bz2 forums-249f3c8885d461ae3981dfd7b62093c2175175e3.tar.xz forums-249f3c8885d461ae3981dfd7b62093c2175175e3.zip |
[ticket/11103] Instantiate $phpbb_notifications as needed
https://github.com/phpbb/phpbb3/pull/992#discussion_r2413976
PHPBB3-11103
Diffstat (limited to 'phpBB/index.php')
-rw-r--r-- | phpBB/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index 5e76d653eb..74fc1b9bda 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -27,6 +27,8 @@ $user->setup('viewforum'); // Mark notifications read if (($mark_notification = $request->variable('mark_notification', 0))) { + $phpbb_notifications = $phpbb_container->get('notification_manager'); + $notification = $phpbb_notifications->load_notifications(array( 'notification_id' => $mark_notification )); |