From 55523ec45534e86a8178358b2ee64103656dcd8f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Mon, 12 Sep 2011 14:46:17 +0000 Subject: [PATCH] Already removed this support for very old move log entries from plain changes list, now also from enhanced. --- includes/ChangesList.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/includes/ChangesList.php b/includes/ChangesList.php index abda092dfe..bb36ce999b 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -626,12 +626,8 @@ class EnhancedChangesList extends ChangesList { # Make article link $type = $rc->mAttribs['rc_type']; $logType = $rc->mAttribs['rc_log_type']; - // Page moves + // Page moves, very old style, not supported anymore if( $type == RC_MOVE || $type == RC_MOVE_OVER_REDIRECT ) { - $msg = ( $type == RC_MOVE ) ? "1movedto2" : "1movedto2_redir"; - $clink = wfMsg( $msg, Linker::linkKnown( $rc->getTitle(), null, - array(), array( 'redirect' => 'no' ) ), - Linker::linkKnown( $rc->getMovedToTitle() ) ); // New unpatrolled pages } elseif( $rc->unpatrolled && $type == RC_NEW ) { $clink = Linker::linkKnown( $rc->getTitle(), null, array(), -- 2.20.1