From: Chad Horohoe Date: Thu, 19 Jun 2008 14:19:54 +0000 (+0000) Subject: revert 36435. Bad logic slaps mw-redirect on pages that aren't even redirects. X-Git-Tag: 1.31.0-rc.0~46950 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=4df635a54062ba63738fcbf5539ed59aa8979cbf;p=lhc%2Fweb%2Fwiklou.git revert 36435. Bad logic slaps mw-redirect on pages that aren't even redirects. --- 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(), '' ) ); }