Fix E_WARNING from r99863
This commit is contained in:
parent
215376e771
commit
ae8b7b7ad5
1 changed files with 1 additions and 1 deletions
|
|
@ -158,7 +158,7 @@ class UserMailer {
|
|||
global $wgEnotifMaxRecips, $wgAdditionalMailParams;
|
||||
|
||||
$emails = '';
|
||||
wfDebug( __METHOD__ . ': sending mail to ' . is_array( $to ) ? implode( ', ', $to ) : $to . "\n" );
|
||||
wfDebug( __METHOD__ . ': sending mail to ' . ( is_array( $to ) ? implode( ', ', $to ) : $to ) . "\n" );
|
||||
|
||||
$headers['From'] = $from->toString();
|
||||
$headers['Return-Path'] = $from->toString();
|
||||
|
|
|
|||
Loading…
Reference in a new issue