From: Chad Horohoe Date: Wed, 18 Jun 2008 22:21:21 +0000 (+0000) Subject: Redirects in logs, rc, etc. should have mw-redirect applied. X-Git-Tag: 1.31.0-rc.0~46958 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=d2a23a17dbdd336330906d393ff1bfcec72bd1a4;p=lhc%2Fweb%2Fwiklou.git Redirects in logs, rc, etc. should have mw-redirect applied. --- diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 436f006eac..ba7710eef2 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' ), + $s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no', '', '', '', 'class="mw-redirect"' ), $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) ); }