Index: trunk/phase3/includes/SpecialDoubleRedirects.php |
— | — | @@ -63,6 +63,7 @@ |
64 | 64 | |
65 | 65 | $fname = 'DoubleRedirectsPage::formatResult'; |
66 | 66 | $titleA = Title::makeTitle( $result->namespace, $result->title ); |
| 67 | + $linkA = $skin->makeKnownLinkObj( $titleA,'', 'redirect=no' ); |
67 | 68 | |
68 | 69 | if ( $result && !isset( $result->nsb ) ) { |
69 | 70 | $dbr = wfGetDB( DB_SLAVE ); |
— | — | @@ -74,13 +75,12 @@ |
75 | 76 | } |
76 | 77 | } |
77 | 78 | if ( !$result ) { |
78 | | - return ''; |
| 79 | + return "<s>{$linkA}</s>\n"; |
79 | 80 | } |
80 | 81 | |
81 | 82 | $titleB = Title::makeTitle( $result->nsb, $result->tb ); |
82 | 83 | $titleC = Title::makeTitle( $result->nsc, $result->tc ); |
83 | 84 | |
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 ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1560,7 +1560,7 @@ |
1561 | 1561 | |
1562 | 1562 | 'doubleredirects' => 'Double redirects', |
1563 | 1563 | 'doubleredirects-summary' => '', # only translate this message to other languages if you have to change it |
1564 | | -'doubleredirectstext' => 'Each row contains links to the first and second redirect, as well as the target of the second redirect, which is usually "real" target page, which the first redirect should point to.', |
| 1564 | +'doubleredirectstext' => 'This page lists pages which redirect to other redirect pages. Each row contains links to the first and second redirect, as well as the target of the second redirect, which is usually "real" target page, which the first redirect should point to.', |
1565 | 1565 | |
1566 | 1566 | 'brokenredirects' => 'Broken redirects', |
1567 | 1567 | 'brokenredirects-summary' => '', # only translate this message to other languages if you have to change it |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -422,8 +422,9 @@ |
423 | 423 | * (bug 11082) Fix check for fully-specced table names in Database::tableName |
424 | 424 | * (bug 11067) Fix regression in upload conflict thumbnail display |
425 | 425 | * (bug 11072) Fix regression in API image history query |
| 426 | +* (bug 10985) Resolved cached entries on Special:DoubleRedirects were being |
| 427 | + supressed, breaking paging - now strikes out "fixed" results |
426 | 428 | |
427 | | - |
428 | 429 | == API changes since 1.10 == |
429 | 430 | |
430 | 431 | Full API documentation is available at http://www.mediawiki.org/wiki/API |