Index: trunk/phase3/includes/SpecialDoubleRedirects.php |
— | — | @@ -63,7 +63,6 @@ |
64 | 64 | |
65 | 65 | $fname = 'DoubleRedirectsPage::formatResult'; |
66 | 66 | $titleA = Title::makeTitle( $result->namespace, $result->title ); |
67 | | - $linkA = $skin->makeKnownLinkObj( $titleA,'', 'redirect=no' ); |
68 | 67 | |
69 | 68 | if ( $result && !isset( $result->nsb ) ) { |
70 | 69 | $dbr = wfGetDB( DB_SLAVE ); |
— | — | @@ -75,12 +74,13 @@ |
76 | 75 | } |
77 | 76 | } |
78 | 77 | if ( !$result ) { |
79 | | - return "<s>{$linkA}</s>\n"; |
| 78 | + return '<s>' . $skin->makeLinkObj( $titleA, '', 'redirect=no' ) . '</s>'; |
80 | 79 | } |
81 | 80 | |
82 | 81 | $titleB = Title::makeTitle( $result->nsb, $result->tb ); |
83 | 82 | $titleC = Title::makeTitle( $result->nsc, $result->tc ); |
84 | 83 | |
| 84 | + $linkA = $skin->makeKnownLinkObj( $titleA, '', 'redirect=no' ); |
85 | 85 | $edit = $skin->makeBrokenLinkObj( $titleA, "(".wfMsg("qbedit").")" , 'redirect=no'); |
86 | 86 | $linkB = $skin->makeKnownLinkObj( $titleB, '', 'redirect=no' ); |
87 | 87 | $linkC = $skin->makeKnownLinkObj( $titleC ); |