Page MenuHomePhabricator

Unregistered users no longer receive any notification of talkpage messages
Closed, ResolvedPublic

Description

Author: rd232

Description:
Unregistered users don't have access to Echo. But it appears that they no longer get the You Have New Messages message either (the Orange Bar). So they are no longer notified of new talkpage messages. See http://en.wikipedia.org/wiki/Wikipedia_talk:Notifications#IP_notifications


Version: unspecified
Severity: critical

Details

Reference
bz47922

Event Timeline

bzimport raised the priority of this task from to Unbreak Now!.Nov 22 2014, 1:26 AM
bzimport added a project: Notifications.
bzimport set Reference to bz47922.
bzimport added a subscriber: Unknown Object (MLST).

Hooks.php :: abortNewTalkNotification()

if ( $recipient->getOption( 'echo-notify-show-link' )

        && isset( $wgEchoNotifications['edit-user-talk'] )
) {

Should most likely become:

if ( $recipient->isLoggedIn()

        && $recipient->getOption( 'echo-notify-show-link' )
        && isset( $wgEchoNotifications['edit-user-talk'] )
) {