Merge "jquery.arrowSteps: Center arrowheads text"
[lhc/web/wiklou.git] / includes / changes / OldChangesList.php
index d88e99a..d590ff6 100644 (file)
@@ -53,10 +53,7 @@ class OldChangesList extends ChangesList {
                $classes[] = $watched && $rc->mAttribs['rc_timestamp'] >= $watched
                        ? 'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
 
-               // Moved pages (very very old, not supported anymore)
-               if ( $rc->mAttribs['rc_type'] == RC_MOVE || $rc->mAttribs['rc_type'] == RC_MOVE_OVER_REDIRECT ) {
-               // Log entries
-               } elseif ( $rc->mAttribs['rc_log_type'] ) {
+               if ( $rc->mAttribs['rc_log_type'] ) {
                        $logtitle = SpecialPage::getTitleFor( 'Log', $rc->mAttribs['rc_log_type'] );
                        $this->insertLog( $s, $logtitle, $rc->mAttribs['rc_log_type'] );
                // Log entries (old format) or log targets, and special pages
@@ -130,15 +127,4 @@ class OldChangesList extends ChangesList {
 
                return "$dateheader<li class=\"" . implode( ' ', $classes ) . "\">" . $s . "</li>\n";
        }
-
-       /**
-        * Returns text for the start of the tabular part of RC
-        *
-        * @param ResultWrapper $res
-        * @return string
-        */
-       public function beginRecentChangesList( $res ) {
-               wfRunHooks( 'OldChangesListBegin', array( $this, $res ) );
-               return parent::beginRecentChangesList( $res );
-       }
 }