This Community website is based on the free phpBB software, which is okay to use, but riddled with bugs despite being quite a long time around already, and in heavy widespread use.
This blog entry is only of interest for other
phpBB admins (and should be for the phpBB developers, but they are infamous for being arrogant and ignorant and not fixing issues since decades, so I don't even bother contacting them).
Here's yet another bug I found recently, and its fix:
The bug: When you got some notifications and open the notifications dropdown list, the last line says "See all". But when you click on that link, you do not go to the full list of notifications, but to your notifications settings. (This may only happen when the notifications list was moved in the ACP Admin Control Panel > System > Module Management > User Control Panel to a non-default UCP tab. Either way, it's a bug.)
The fix: In
./includes/functions.php the key
U_VIEW_ALL_NOTIFICATIONS is incompletely defined. By default it reads:
Code: Select all
'U_VIEW_ALL_NOTIFICATIONS' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=ucp_notifications'),
Extend this to:
Code: Select all
'U_VIEW_ALL_NOTIFICATIONS' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=ucp_notifications&mode=notification_list'),