Fixed Typo causes being unable to mark alert as unread in overlay

TickTackk

Well-known member
Affected version
2.2.1
This:
PHP:
            $viewParams = [
                'alert' => $alert,
                '$newUnreadStatus' => $newUnreadStatus,
                'redirect' => $redirect
            ];
should be:
PHP:
            $viewParams = [
                'alert' => $alert,
                'newUnreadStatus' => $newUnreadStatus,
                'redirect' => $redirect
            ];
 
Thank you for reporting this issue, it has now been resolved. We are aiming to include any changes that have been made in a future XF release (2.2.2).

Change log:
Fix typo that prevents alerts from being marked as unread if a confirmation message is shown.
There may be a delay before changes are rolled out to the XenForo Community.
 
Top Bottom