From: David McCabe Date: Fri, 26 Sep 2008 06:01:57 +0000 (+0000) Subject: Use PHP-5 private members. X-Git-Tag: 1.31.0-rc.0~45083 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/One?a=commitdiff_plain;h=fd2031a7527f5c6942ed871b6e8d79390462109a;p=lhc%2Fweb%2Fwiklou.git Use PHP-5 private members. --- 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.