Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -626,12 +626,8 @@ |
627 | 627 | # Make article link |
628 | 628 | $type = $rc->mAttribs['rc_type']; |
629 | 629 | $logType = $rc->mAttribs['rc_log_type']; |
630 | | - // Page moves |
| 630 | + // Page moves, very old style, not supported anymore |
631 | 631 | if( $type == RC_MOVE || $type == RC_MOVE_OVER_REDIRECT ) { |
632 | | - $msg = ( $type == RC_MOVE ) ? "1movedto2" : "1movedto2_redir"; |
633 | | - $clink = wfMsg( $msg, Linker::linkKnown( $rc->getTitle(), null, |
634 | | - array(), array( 'redirect' => 'no' ) ), |
635 | | - Linker::linkKnown( $rc->getMovedToTitle() ) ); |
636 | 632 | // New unpatrolled pages |
637 | 633 | } elseif( $rc->unpatrolled && $type == RC_NEW ) { |
638 | 634 | $clink = Linker::linkKnown( $rc->getTitle(), null, array(), |