Index: trunk/phase3/includes/specials/SpecialBrokenRedirects.php |
— | — | @@ -76,7 +76,7 @@ |
77 | 77 | |
78 | 78 | // $toObj may very easily be false if the $result list is cached |
79 | 79 | if ( !is_object( $toObj ) ) { |
80 | | - return '<s>' . $skin->link( $fromObj ) . '</s>'; |
| 80 | + return '<del>' . $skin->link( $fromObj ) . '</del>'; |
81 | 81 | } |
82 | 82 | |
83 | 83 | $from = $skin->linkKnown( |
Index: trunk/phase3/includes/specials/SpecialShortpages.php |
— | — | @@ -105,7 +105,7 @@ |
106 | 106 | |
107 | 107 | return $title->exists() |
108 | 108 | ? "({$hlink}) {$dm}{$plink} {$dm}[{$size}]" |
109 | | - : "<s>({$hlink}) {$dm}{$plink} {$dm}[{$size}]</s>"; |
| 109 | + : "<del>({$hlink}) {$dm}{$plink} {$dm}[{$size}]</del>"; |
110 | 110 | } |
111 | 111 | } |
112 | 112 | |
Index: trunk/phase3/includes/specials/SpecialDoubleRedirects.php |
— | — | @@ -89,7 +89,7 @@ |
90 | 90 | } |
91 | 91 | } |
92 | 92 | if ( !$result ) { |
93 | | - return '<s>' . $skin->link( $titleA, null, array(), array( 'redirect' => 'no' ) ) . '</s>'; |
| 93 | + return '<del>' . $skin->link( $titleA, null, array(), array( 'redirect' => 'no' ) ) . '</del>'; |
94 | 94 | } |
95 | 95 | |
96 | 96 | $titleB = Title::makeTitle( $result->nsb, $result->tb ); |
Index: trunk/phase3/includes/specials/SpecialListredirects.php |
— | — | @@ -67,10 +67,10 @@ |
68 | 68 | $targetLink = $skin->link( $target ); |
69 | 69 | return "$rd_link $arr $targetLink"; |
70 | 70 | } else { |
71 | | - return "<s>$rd_link</s>"; |
| 71 | + return "<del>$rd_link</del>"; |
72 | 72 | } |
73 | 73 | } else { |
74 | | - return "<s>$rd_link</s>"; |
| 74 | + return "<del>$rd_link</del>"; |
75 | 75 | } |
76 | 76 | } |
77 | 77 | } |
Index: trunk/phase3/includes/QueryPage.php |
— | — | @@ -596,7 +596,7 @@ |
597 | 597 | if( $title instanceof Title ) { |
598 | 598 | if( $this->isCached() ) { |
599 | 599 | $pageLink = $title->exists() |
600 | | - ? '<s>' . $skin->link( $title ) . '</s>' |
| 600 | + ? '<del>' . $skin->link( $title ) . '</del>' |
601 | 601 | : $skin->link( |
602 | 602 | $title, |
603 | 603 | null, |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2393,7 +2393,7 @@ |
2394 | 2394 | 'doubleredirects-summary' => '', # do not translate or duplicate this message to other languages |
2395 | 2395 | 'doubleredirectstext' => 'This page lists pages which redirect to other redirect pages. |
2396 | 2396 | Each row contains links to the first and second redirect, as well as the target of the second redirect, which is usually the "real" target page, which the first redirect should point to. |
2397 | | -<s>Crossed out</s> entries have been solved.', |
| 2397 | +<del>Crossed out</del> entries have been solved.', |
2398 | 2398 | 'double-redirect-fixed-move' => '[[$1]] has been moved. |
2399 | 2399 | It now redirects to [[$2]].', |
2400 | 2400 | 'double-redirect-fixer' => 'Redirect fixer', |