From 4df635a54062ba63738fcbf5539ed59aa8979cbf Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Thu, 19 Jun 2008 14:19:54 +0000 Subject: [PATCH] revert 36435. Bad logic slaps mw-redirect on pages that aren't even redirects. --- includes/ChangesList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ChangesList.php b/includes/ChangesList.php index ba7710eef2..436f006eac 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -121,7 +121,7 @@ class ChangesList { # "[[x]] moved to [[y]]" $msg = ( $rc->mAttribs['rc_type'] == RC_MOVE ) ? '1movedto2' : '1movedto2_redir'; - $s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no', '', '', '', 'class="mw-redirect"' ), + $s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ), $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) ); } -- 2.20.1