Use PHP-5 private members.
authorDavid McCabe <david@users.mediawiki.org>
Fri, 26 Sep 2008 06:01:57 +0000 (06:01 +0000)
committerDavid McCabe <david@users.mediawiki.org>
Fri, 26 Sep 2008 06:01:57 +0000 (06:01 +0000)
includes/UserMailer.php

index cd889df..561ad1d 100644 (file)
@@ -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.