From fd2031a7527f5c6942ed871b6e8d79390462109a Mon Sep 17 00:00:00 2001 From: David McCabe Date: Fri, 26 Sep 2008 06:01:57 +0000 Subject: [PATCH] Use PHP-5 private members. --- includes/UserMailer.php | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/includes/UserMailer.php b/includes/UserMailer.php index cd889df9be..561ad1d3c3 100644 --- a/includes/UserMailer.php +++ b/includes/UserMailer.php @@ -259,14 +259,9 @@ class UserMailer { * */ class EmailNotification { - /**@{{ - * @private - */ - var $to, $subject, $body, $replyto, $from; - var $user, $title, $timestamp, $summary, $minorEdit, $oldid, $composed_common, $editor; - var $mailTargets = array(); - - /**@}}*/ + private $to, $subject, $body, $replyto, $from; + private $user, $title, $timestamp, $summary, $minorEdit, $oldid, $composed_common, $editor; + private $mailTargets = array(); /** * Send emails corresponding to the user $editor editing the page $title. -- 2.20.1