Update for he.
[lhc/web/wiklou.git] / includes / ChangesList.php
index 2015c3e..e8d1f53 100644 (file)
@@ -27,7 +27,10 @@ class ChangesList {
        # Called by history lists and recent changes
        #
 
-       /** @todo document */
+       /**
+       * Changeslist contructor
+       * @param Skin $skin
+       */
        function __construct( &$skin ) {
                $this->skin =& $skin;
                $this->preCacheMessages();
@@ -54,7 +57,7 @@ class ChangesList {
         * As we use the same small set of messages in various methods and that
         * they are called often, we call them once and save them in $this->message
         */
-       function preCacheMessages() {
+       private function preCacheMessages() {
                // Precache various messages
                if( !isset( $this->message ) ) {
                        foreach( explode(' ', 'cur diff hist minoreditletter newpageletter last '.
@@ -67,8 +70,14 @@ class ChangesList {
 
        /**
         * Returns the appropriate flags for new page, minor change and patrolling
+        * @param bool $new
+        * @param bool $minor
+        * @param bool $patrolled
+        * @param string $nothing, string to use for empty space
+        * @param bool $bot
+        * @return string
         */
-       function recentChangesFlags( $new, $minor, $patrolled, $nothing = ' ', $bot = false ) {
+       protected function recentChangesFlags( $new, $minor, $patrolled, $nothing = ' ', $bot = false ) {
                $f = $new ? '<span class="newpage">' . $this->message['newpageletter'] . '</span>'
                                : $nothing;
                $f .= $minor ? '<span class="minor">' . $this->message['minoreditletter'] . '</span>'
@@ -80,8 +89,9 @@ class ChangesList {
 
        /**
         * Returns text for the start of the tabular part of RC
+        * @return string
         */
-       function beginRecentChangesList() {
+       public function beginRecentChangesList() {
                $this->rc_cache = array();
                $this->rcMoveIndex = 0;
                $this->rcCacheIndex = 0;
@@ -92,8 +102,9 @@ class ChangesList {
 
        /**
         * Returns text for the end of RC
+        * @return string
         */
-       function endRecentChangesList() {
+       public function endRecentChangesList() {
                if( $this->rclistOpen ) {
                        return "</ul>\n";
                } else {
@@ -101,34 +112,7 @@ class ChangesList {
                }
        }
 
-       /**
-        * int $field one of DELETED_* bitfield constants
-        * @return bool
-        */
-       function isDeleted( $rc, $field ) {
-               return ($rc->mAttribs['rc_deleted'] & $field) == $field;
-       }
-       
-       /**
-        * Determine if the current user is allowed to view a particular
-        * field of this revision, if it's marked as deleted.
-        * @param int $field
-        * @return bool
-        */
-       function userCan( $rc, $field ) {
-               if( ( $rc->mAttribs['rc_deleted'] & $field ) == $field ) {
-                       global $wgUser;
-                       $permission = ( $rc->mAttribs['rc_deleted'] & Revision::DELETED_RESTRICTED ) == Revision::DELETED_RESTRICTED
-                               ? 'hiderevision'
-                               : 'deleterevision';
-                       wfDebug( "Checking for $permission due to $field match on $rc->mAttribs['rc_deleted']\n" );
-                       return $wgUser->isAllowed( $permission );
-               } else {
-                       return true;
-               }
-       }
-
-       function insertMove( &$s, $rc ) {
+       protected function insertMove( &$s, $rc ) {
                # Diff
                $s .= '(' . $this->message['diff'] . ') (';
                # Hist
@@ -141,7 +125,7 @@ class ChangesList {
                        $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
        }
 
-       function insertDateHeader(&$s, $rc_timestamp) {
+       protected function insertDateHeader(&$s, $rc_timestamp) {
                global $wgLang;
 
                # Make date header if necessary
@@ -157,12 +141,12 @@ class ChangesList {
                }
        }
 
-       function insertLog(&$s, $title, $logtype) {
+       protected function insertLog(&$s, $title, $logtype) {
                $logname = LogPage::logName( $logtype );
                $s .= '(' . $this->skin->makeKnownLinkObj($title, $logname ) . ')';
        }
 
-       function insertDiffHist(&$s, &$rc, $unpatrolled) {
+       protected function insertDiffHist(&$s, &$rc, $unpatrolled) {
                # Diff link
                if( !$this->userCan($rc,Revision::DELETED_TEXT) ) {
                        $diffLink = $this->message['diff'];
@@ -190,7 +174,7 @@ class ChangesList {
                $s .= ') . . ';
        }
 
-       function insertArticleLink(&$s, &$rc, $unpatrolled, $watched) {
+       protected function insertArticleLink(&$s, &$rc, $unpatrolled, $watched) {
                # Article link
                # If it's a new article, there is no diff link, but if it hasn't been
                # patrolled yet, we need to give users a way to do so
@@ -210,20 +194,20 @@ class ChangesList {
 
                wfRunHooks('ChangesListInsertArticleLink',
                        array(&$this, &$articlelink, &$s, &$rc, $unpatrolled, $watched));
-               
+
                $s .= ' '.$articlelink;
        }
 
-       function insertTimestamp(&$s, $rc) {
+       protected function insertTimestamp(&$s, $rc) {
                global $wgLang;
                # Timestamp
                $s .= $this->message['semicolon-separator'] . ' ' . $wgLang->time( $rc->mAttribs['rc_timestamp'], true, true ) . ' . . ';
        }
 
        /** Insert links to user page, user talk page and eventually a blocking link */
-       function insertUserRelatedLinks(&$s, &$rc) {
+       protected function insertUserRelatedLinks(&$s, &$rc) {
                if ( $this->isDeleted($rc,Revision::DELETED_USER) ) {
-                  $s .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-user') . '</span>';   
+                  $s .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-user') . '</span>';
                } else {
                  $s .= $this->skin->userLink( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
                  $s .= $this->skin->userToolLinks( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
@@ -231,21 +215,21 @@ class ChangesList {
        }
 
        /** insert a formatted action */
-       function insertAction(&$s, &$rc) {
+       protected function insertAction(&$s, &$rc) {
                # Add action
                if( $rc->mAttribs['rc_type'] == RC_LOG ) {
                        // log action
                        if ( $this->isDeleted($rc,LogPage::DELETED_ACTION) ) {
                                $s .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
                        } else {
-                               $s .= ' ' . LogPage::actionText( $rc->mAttribs['rc_log_type'], $rc->mAttribs['rc_log_action'], 
+                               $s .= ' ' . LogPage::actionText( $rc->mAttribs['rc_log_type'], $rc->mAttribs['rc_log_action'],
                                        $rc->getTitle(), $this->skin, LogPage::extractParams($rc->mAttribs['rc_params']), true, true );
                        }
                }
        }
 
        /** insert a formatted comment */
-       function insertComment(&$s, &$rc) {
+       protected function insertComment(&$s, &$rc) {
                # Add comment
                if( $rc->mAttribs['rc_type'] != RC_MOVE && $rc->mAttribs['rc_type'] != RC_MOVE_OVER_REDIRECT ) {
                        // log comment
@@ -262,14 +246,14 @@ class ChangesList {
         * @return bool
         */
        public static function usePatrol() {
-               global $wgUseRCPatrol, $wgUser;
-               return( $wgUseRCPatrol && ($wgUser->isAllowed('patrol') || $wgUser->isAllowed('patrolmarks')) );
+               global $wgUser;
+               return $wgUser->useRCPatrol();
        }
 
        /**
         * Returns the string which indicates the number of watching users
         */
-       function numberofWatchingusers( $count ) {
+       protected function numberofWatchingusers( $count ) {
                global $wgLang;
                static $cache = array();
                if ( $count > 0 ) {
@@ -282,6 +266,36 @@ class ChangesList {
                        return '';
                }
        }
+
+       /**
+        * Determine if said field of a revision is hidden
+        * @param RCCacheEntry $rc
+        * @param int $field one of DELETED_* bitfield constants
+        * @return bool
+        */
+       public static function isDeleted( $rc, $field ) {
+               return ($rc->mAttribs['rc_deleted'] & $field) == $field;
+       }
+
+       /**
+        * Determine if the current user is allowed to view a particular
+        * field of this revision, if it's marked as deleted.
+        * @param RCCacheEntry $rc
+        * @param int $field
+        * @return bool
+        */
+       public static function userCan( $rc, $field ) {
+               if( ( $rc->mAttribs['rc_deleted'] & $field ) == $field ) {
+                       global $wgUser;
+                       $permission = ( $rc->mAttribs['rc_deleted'] & Revision::DELETED_RESTRICTED ) == Revision::DELETED_RESTRICTED
+                               ? 'suppressrevision'
+                               : 'deleterevision';
+                       wfDebug( "Checking for $permission due to $field match on $rc->mAttribs['rc_deleted']\n" );
+                       return $wgUser->isAllowed( $permission );
+               } else {
+                       return true;
+               }
+       }
 }
 
 
@@ -292,8 +306,8 @@ class OldChangesList extends ChangesList {
        /**
         * Format a line using the old system (aka without any javascript).
         */
-       function recentChangesLine( &$rc, $watched = false ) {
-               global $wgContLang, $wgRCShowChangedSize;
+       public function recentChangesLine( &$rc, $watched = false ) {
+               global $wgContLang, $wgRCShowChangedSize, $wgUser;
 
                $fname = 'ChangesList::recentChangesLineOld';
                wfProfileIn( $fname );
@@ -303,7 +317,7 @@ class OldChangesList extends ChangesList {
                extract( $rc->mAttribs );
 
                # Should patrol-related stuff be shown?
-               $unpatrolled = $this->usePatrol() && $rc_patrolled == 0;
+               $unpatrolled = $wgUser->useRCPatrol() && $rc_patrolled == 0;
 
                $this->insertDateHeader($s,$rc_timestamp);
 
@@ -350,7 +364,7 @@ class OldChangesList extends ChangesList {
                $this->insertAction($s, $rc);
                # Edit or log comment
                $this->insertComment($s, $rc);
-               
+
                # Mark revision as deleted if so
                if ( !$rc_log_type && $this->isDeleted($rc,Revision::DELETED_TEXT) )
                   $s .= ' <tt>' . wfMsgHtml( 'deletedrev' ) . '</tt>';
@@ -375,8 +389,8 @@ class EnhancedChangesList extends ChangesList {
        /**
         * Format a line for enhanced recentchange (aka with javascript and block of lines).
         */
-       function recentChangesLine( &$baseRC, $watched = false ) {
-               global $wgLang, $wgContLang;
+       public function recentChangesLine( &$baseRC, $watched = false ) {
+               global $wgLang, $wgContLang, $wgUser;
 
                # Create a specialised object
                $rc = RCCacheEntry::newFromParent( $baseRC );
@@ -398,7 +412,7 @@ class EnhancedChangesList extends ChangesList {
                }
 
                # Should patrol-related stuff be shown?
-               if( $this->usePatrol() ) {
+               if( $wgUser->useRCPatrol() ) {
                        $rc->unpatrolled = !$rc_patrolled;
                } else {
                        $rc->unpatrolled = false;
@@ -425,11 +439,20 @@ class EnhancedChangesList extends ChangesList {
                // New unpatrolled pages
                } else if( $rc->unpatrolled && $rc_type == RC_NEW ) {
                        $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '', "rcid={$rc_id}" );
-               // Other edits or log entries
+               // Log entries
+               } else if( $rc_type == RC_LOG ) {
+                       if( $rc_log_type ) {
+                               $logtitle = SpecialPage::getTitleFor( 'Log', $rc_log_type );
+                               $clink = '(' . $this->skin->makeKnownLinkObj( $logtitle, LogPage::logName($rc_log_type) ) . ')';
+                       } else {
+                               $clink = $this->skin->makeLinkObj( $rc->getTitle(), '' );
+                       }
+                       $watched = false;
+               // Edits
                } else {
                        $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '' );
                }
-               
+
                # Don't show unusable diff links
                if ( !ChangesList::userCan($rc,Revision::DELETED_TEXT) ) {
                        $showdifflinks = false;
@@ -451,7 +474,7 @@ class EnhancedChangesList extends ChangesList {
                $querydiff = $curIdEq."&diff=$rc_this_oldid&oldid=$rc_last_oldid$rcIdQuery";
                $aprops = ' tabindex="'.$baseRC->counter.'"';
                $curLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['cur'], $querycur, '' ,'', $aprops );
-               
+
                # Make "diff" an "cur" links
                if( !$showdifflinks ) {
                   $curLink = $this->message['cur'];
@@ -464,7 +487,7 @@ class EnhancedChangesList extends ChangesList {
                } else {
                        $diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['diff'], $querydiff, '' ,'', $aprops );
                }
-               
+
                # Make "last" link
                if( !$showdifflinks ) {
                    $lastLink = $this->message['last'];
@@ -474,7 +497,7 @@ class EnhancedChangesList extends ChangesList {
                        $lastLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['last'],
                        $curIdEq.'&diff='.$rc_this_oldid.'&oldid='.$rc_last_oldid . $rcIdQuery );
                }
-               
+
                # Make user links
                if( $this->isDeleted($rc,Revision::DELETED_USER) ) {
                        $rc->userlink = ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-user') . '</span>';
@@ -495,6 +518,10 @@ class EnhancedChangesList extends ChangesList {
                        # Use an @ character to prevent collision with page names
                        $this->rc_cache['@@' . ($this->rcMoveIndex++)] = array($rc);
                } else {
+                       # Logs are grouped by type
+                       if( $rc_type == RC_LOG ){
+                               $secureName = SpecialPage::getTitleFor( 'Log', $rc_log_type )->getPrefixedDBkey();
+                       }
                        if( !isset( $this->rc_cache[$secureName] ) ) {
                                $this->rc_cache[$secureName] = array();
                        }
@@ -506,7 +533,7 @@ class EnhancedChangesList extends ChangesList {
        /**
         * Enhanced RC group
         */
-       function recentChangesBlockGroup( $block ) {
+       protected function recentChangesBlockGroup( $block ) {
                global $wgLang, $wgContLang, $wgRCShowChangedSize;
                $r = '<table cellpadding="0" cellspacing="0" border="0" style="background: none"><tr>';
 
@@ -547,7 +574,7 @@ class EnhancedChangesList extends ChangesList {
                        if( !$currentRevision && $rcObj->mAttribs['rc_this_oldid'] ) {
                                $currentRevision = $rcObj->mAttribs['rc_this_oldid'];
                        }
-                       
+
                        $bot = $rcObj->mAttribs['rc_bot'];
                        $userlinks[$u]++;
                }
@@ -596,7 +623,7 @@ class EnhancedChangesList extends ChangesList {
                $n = count($block);
                static $nchanges = array();
                if ( !isset( $nchanges[$n] ) ) {
-                       $nchanges[$n] = wfMsgExt( 'nchanges', array( 'parsemag', 'escape'), $wgLang->formatNum( $n ) );
+                       $nchanges[$n] = wfMsgExt( 'nchanges', array( 'parsemag', 'escape' ), $wgLang->formatNum( $n ) );
                }
                # Total change link
                $r .= ' ';
@@ -612,7 +639,7 @@ class EnhancedChangesList extends ChangesList {
                        }
                        $r .= ') . . ';
                }
-               
+
                # Character difference (does not apply if only log items)
                if( $wgRCShowChangedSize && !$alllogs ) {
                        $last = 0;
@@ -627,7 +654,7 @@ class EnhancedChangesList extends ChangesList {
                        # Get net change
                        $chardiff = $rcObj->getCharacterDifference( $block[$first]->mAttribs['rc_old_len'],
                                $block[$last]->mAttribs['rc_new_len'] );
-                       
+
                        if( $chardiff == '' ) {
                                $r .= ' ';
                        } else {
@@ -636,13 +663,18 @@ class EnhancedChangesList extends ChangesList {
                }
 
                # History
-               $r .= '(' . $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
-                       $this->message['history'], $curIdEq.'&action=history' );
-               $r .= ')';
+               if( $alllogs ) {
+                       // don't show history link for logs
+               } else if( $namehidden || !$block[0]->getTitle()->exists() ) {
+                       $r .= '(' . $this->message['history'] . ')';
+               } else {
+                       $r .= '(' . $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
+                               $this->message['history'], $curIdEq.'&action=history' ) . ')';
+               }
 
                $r .= $users;
-               $r .=$this->numberofWatchingusers($block[0]->numberofWatchingusers);
-               
+               $r .= $this->numberofWatchingusers($block[0]->numberofWatchingusers);
+
                $r .= "</td></tr></table>\n";
 
                # Sub-entries
@@ -662,28 +694,27 @@ class EnhancedChangesList extends ChangesList {
                        if( $rc_this_oldid != 0 ) {
                                $o = 'oldid='.$rc_this_oldid;
                        }
-                       # Revision link
+                       # Log timestamp
                        if( $rc_type == RC_LOG ) {
                                $link = '<tt>'.$rcObj->timestamp.'</tt> ';
+                       # Revision link
                        } else if( !ChangesList::userCan($rcObj,Revision::DELETED_TEXT) ) {
                                $link = '<span class="history-deleted"><tt>'.$rcObj->timestamp.'</tt></span> ';
                        } else {
-                               $link = '<tt>'.$this->skin->makeKnownLinkObj( $rcObj->getTitle(), $rcObj->timestamp, $curIdEq.'&'.$o ).'</tt>';
+                               $rcIdEq = ($rcObj->unpatrolled && $rc_type == RC_NEW) ? '&rcid='.$rcObj->mAttribs['rc_id'] : '';
+                               
+                               $link = '<tt>'.$this->skin->makeKnownLinkObj( $rcObj->getTitle(), $rcObj->timestamp, $curIdEq.'&'.$o.$rcIdEq ).'</tt>';
                                if( $this->isDeleted($rcObj,Revision::DELETED_TEXT) )
                                        $link = '<span class="history-deleted">'.$link.'</span> ';
                        }
                        $r .= $link;
-                       
-                       if ( !$rc_log_type ) {
+
+                       if ( !$rc_type == RC_LOG || $rc_type == RC_NEW ) {
                                $r .= ' (';
                                $r .= $rcObj->curlink;
                                $r .= $this->message['semicolon-separator'] . ' ';
                                $r .= $rcObj->lastlink;
                                $r .= ')';
-                       } else {
-                               $logname = LogPage::logName( $rc_log_type );
-                               $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
-                               $r .= '(' . $this->skin->makeKnownLinkObj($logtitle, $logname ) . ')';
                        }
                        $r .= ' . . ';
 
@@ -699,8 +730,9 @@ class EnhancedChangesList extends ChangesList {
                        // log comment
                        parent::insertComment( $r, $rcObj );
                        # Mark revision as deleted
-                       if ( !$rc_log_type && $this->isDeleted($rcObj,Revision::DELETED_TEXT) )
+                       if( !$rc_log_type && $this->isDeleted($rcObj,Revision::DELETED_TEXT) ) {
                                $r .= ' <tt>' . wfMsgHtml( 'deletedrev' ) . '</tt>';
+                       }
 
                        $r .= "</td></tr>\n";
                }
@@ -710,7 +742,7 @@ class EnhancedChangesList extends ChangesList {
                return $r;
        }
 
-       function maybeWatchedLink( $link, $watched=false ) {
+       protected function maybeWatchedLink( $link, $watched=false ) {
                if( $watched ) {
                        // FIXME: css style might be more appropriate
                        return '<strong class="mw-watched">' . $link . '</strong>';
@@ -724,9 +756,8 @@ class EnhancedChangesList extends ChangesList {
         * @param string $dir one of '', 'd', 'l', 'r'
         * @param string $alt text
         * @return string HTML <img> tag
-        * @access private
         */
-       function arrow( $dir, $alt='' ) {
+       protected function arrow( $dir, $alt='' ) {
                global $wgStylePath;
                $encUrl = htmlspecialchars( $wgStylePath . '/common/images/Arr_' . $dir . '.png' );
                $encAlt = htmlspecialchars( $alt );
@@ -737,9 +768,8 @@ class EnhancedChangesList extends ChangesList {
         * Generate HTML for a right- or left-facing arrow,
         * depending on language direction.
         * @return string HTML <img> tag
-        * @access private
         */
-       function sideArrow() {
+       protected function sideArrow() {
                global $wgContLang;
                $dir = $wgContLang->isRTL() ? 'l' : 'r';
                return $this->arrow( $dir, '+' );
@@ -749,27 +779,24 @@ class EnhancedChangesList extends ChangesList {
         * Generate HTML for a down-facing arrow
         * depending on language direction.
         * @return string HTML <img> tag
-        * @access private
         */
-       function downArrow() {
+       protected function downArrow() {
                return $this->arrow( 'd', '-' );
        }
 
        /**
         * Generate HTML for a spacer image
         * @return string HTML <img> tag
-        * @access private
         */
-       function spacerArrow() {
+       protected function spacerArrow() {
                return $this->arrow( '', ' ' );
        }
-       
+
        /**
         * Add a set of spaces
         * @return string HTML <td> tag
-        * @access private
-        */     
-       function spacerIndent() {
+        */
+       protected function spacerIndent() {
                return '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
        }
 
@@ -777,7 +804,7 @@ class EnhancedChangesList extends ChangesList {
         * Enhanced RC ungrouped line.
         * @return string a HTML formated line (generated using $r)
         */
-       function recentChangesBlockLine( $rcObj ) {
+       protected function recentChangesBlockLine( $rcObj ) {
                global $wgContLang, $wgRCShowChangedSize;
 
                # Get rc_xxxx variables
@@ -788,7 +815,7 @@ class EnhancedChangesList extends ChangesList {
                $r = '<table cellspacing="0" cellpadding="0" border="0" style="background: none"><tr>';
 
                $r .= '<td valign="top" style="white-space: nowrap"><tt>' . $this->spacerArrow() . '&nbsp;';
-               
+
                # Flag and Timestamp
                if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
                        $r .= '&nbsp;&nbsp;&nbsp;&nbsp;'; // 4 flags -> 4 spaces
@@ -796,7 +823,7 @@ class EnhancedChangesList extends ChangesList {
                        $r .= $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
                }
                $r .= '&nbsp;'.$rcObj->timestamp.'&nbsp;</tt></td><td>';
-               
+
                # Article or log link
                if( $rc_log_type ) {
                        $logtitle = Title::newFromText( "Log/$rc_log_type", NS_SPECIAL );
@@ -807,14 +834,14 @@ class EnhancedChangesList extends ChangesList {
                } else {
                        $r .= $this->maybeWatchedLink( $rcObj->link, $rcObj->watched );
                }
-               
+
                # Diff and hist links
                if ( $rc_type != RC_LOG ) {
                   $r .= ' ('. $rcObj->difflink . $this->message['semicolon-separator'] . ' ';
                   $r .= $this->skin->makeKnownLinkObj( $rcObj->getTitle(), wfMsg( 'hist' ), $curIdEq.'&action=history' ) . ')';
                }
                $r .= ' . . ';
-               
+
                # Character diff
                if( $wgRCShowChangedSize ) {
                        $r .= ( $rcObj->getCharacterDifference() == '' ? '' : '&nbsp;' . $rcObj->getCharacterDifference() . ' . . ' ) ;
@@ -828,8 +855,9 @@ class EnhancedChangesList extends ChangesList {
                        if( $this->isDeleted($rcObj,LogPage::DELETED_ACTION) ) {
                                $r .= ' <span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
                        } else {
-                               $r .= ' ' . LogPage::actionText( $rc_log_type, $rc_log_action, $rcObj->getTitle(), $this->skin, LogPage::extractParams($rc_params), true, true );
-                       } 
+                               $r .= ' ' . LogPage::actionText( $rc_log_type, $rc_log_action, $rcObj->getTitle(), 
+                                       $this->skin, LogPage::extractParams($rc_params), true, true );
+                       }
                }
 
                # Edit or log comment
@@ -853,7 +881,7 @@ class EnhancedChangesList extends ChangesList {
         * If enhanced RC is in use, this function takes the previously cached
         * RC lines, arranges them, and outputs the HTML
         */
-       function recentChangesBlock() {
+       protected function recentChangesBlock() {
                if( count ( $this->rc_cache ) == 0 ) {
                        return '';
                }
@@ -873,7 +901,7 @@ class EnhancedChangesList extends ChangesList {
         * Returns text for the end of RC
         * If enhanced RC is in use, returns pretty much all the text
         */
-       function endRecentChangesList() {
+       public function endRecentChangesList() {
                return $this->recentChangesBlock() . parent::endRecentChangesList();
        }