From f7ae53ce330f21af2a98bc1696cc07529507a8b0 Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Fri, 6 Jan 2012 20:54:24 +0000 Subject: [PATCH] w/s, remove unused vars per note in bug #33537 --- includes/UserMailer.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/UserMailer.php b/includes/UserMailer.php index 195e1066ce..20e77b878d 100644 --- a/includes/UserMailer.php +++ b/includes/UserMailer.php @@ -347,7 +347,7 @@ class UserMailer { * */ class EmailNotification { - protected $to, $subject, $body, $replyto, $from; + protected $subject, $body, $replyto, $from; protected $timestamp, $summary, $minorEdit, $oldid, $composed_common; protected $mailTargets = array(); @@ -359,7 +359,7 @@ class EmailNotification { /** * @var User */ - protected $user, $editor; + protected $editor; /** * Send emails corresponding to the user $editor editing the page $title. @@ -550,7 +550,7 @@ class EmailNotification { wfDebug( __METHOD__ . ": talk page owner doesn't want notifications\n" ); } } - return false; + return false; } /** -- 2.20.1