From 966ecbaace07fc525c22fe30fb9b1e708024d8bb Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Thu, 25 Jun 2009 00:41:29 +0000 Subject: [PATCH] (bug 17804) Make EmailNotification members protected --- includes/UserMailer.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/UserMailer.php b/includes/UserMailer.php index 97195fbf7f..b9f359783e 100644 --- a/includes/UserMailer.php +++ b/includes/UserMailer.php @@ -264,9 +264,9 @@ class UserMailer { * */ class EmailNotification { - private $to, $subject, $body, $replyto, $from; - private $user, $title, $timestamp, $summary, $minorEdit, $oldid, $composed_common, $editor; - private $mailTargets = array(); + protected $to, $subject, $body, $replyto, $from; + protected $user, $title, $timestamp, $summary, $minorEdit, $oldid, $composed_common, $editor; + protected $mailTargets = array(); /** * Send emails corresponding to the user $editor editing the page $title. -- 2.20.1