https://bugzilla.wikimedia.org/show_bug.cgi?id=47922

Derk-Jan Hartman <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Derk-Jan Hartman <[email protected]> ---
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'] )
                ) {

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to