From ae8b7b7ad59af8729bd2d2fbdd9b925f42d43ee0 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 15 Oct 2011 19:22:05 +0000 Subject: [PATCH] Fix E_WARNING from r99863 --- includes/UserMailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/UserMailer.php b/includes/UserMailer.php index ad713ef55d..3a3cca51d4 100644 --- a/includes/UserMailer.php +++ b/includes/UserMailer.php @@ -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(); -- 2.20.1