* replacing deprecated <s> with <del>
authorDanny B <danny_b@users.mediawiki.org>
Fri, 23 Jul 2010 16:59:29 +0000 (16:59 +0000)
committerDanny B <danny_b@users.mediawiki.org>
Fri, 23 Jul 2010 16:59:29 +0000 (16:59 +0000)
includes/QueryPage.php
includes/specials/SpecialBrokenRedirects.php
includes/specials/SpecialDoubleRedirects.php
includes/specials/SpecialListredirects.php
includes/specials/SpecialShortpages.php
languages/messages/MessagesEn.php

index 827264b..b2a49b6 100644 (file)
@@ -596,7 +596,7 @@ abstract class WantedQueryPage extends QueryPage {
                if( $title instanceof Title ) {
                        if( $this->isCached() ) {
                                $pageLink = $title->exists()
-                                       ? '<s>' . $skin->link( $title ) . '</s>'
+                                       ? '<del>' . $skin->link( $title ) . '</del>'
                                        : $skin->link(
                                                $title,
                                                null,
index 173bb0f..873125b 100644 (file)
@@ -76,7 +76,7 @@ class BrokenRedirectsPage extends PageQueryPage {
 
                // $toObj may very easily be false if the $result list is cached
                if ( !is_object( $toObj ) ) {
-                       return '<s>' . $skin->link( $fromObj ) . '</s>';
+                       return '<del>' . $skin->link( $fromObj ) . '</del>';
                }
 
                $from = $skin->linkKnown(
index 6e37b48..566f8f6 100644 (file)
@@ -89,7 +89,7 @@ class DoubleRedirectsPage extends PageQueryPage {
                        }
                }
                if ( !$result ) {
-                       return '<s>' . $skin->link( $titleA, null, array(), array( 'redirect' => 'no' ) ) . '</s>';
+                       return '<del>' . $skin->link( $titleA, null, array(), array( 'redirect' => 'no' ) ) . '</del>';
                }
 
                $titleB = Title::makeTitle( $result->nsb, $result->tb );
index fa06214..ecc764d 100644 (file)
@@ -67,10 +67,10 @@ class ListredirectsPage extends QueryPage {
                                $targetLink = $skin->link( $target );
                                return "$rd_link $arr $targetLink";
                        } else {
-                               return "<s>$rd_link</s>";
+                               return "<del>$rd_link</del>";
                        }
                } else {
-                       return "<s>$rd_link</s>";
+                       return "<del>$rd_link</del>";
                }
        }
 }
index 16022d6..acbdbf4 100644 (file)
@@ -105,7 +105,7 @@ class ShortPagesPage extends QueryPage {
 
                return $title->exists()
                                ? "({$hlink}) {$dm}{$plink} {$dm}[{$size}]"
-                               : "<s>({$hlink}) {$dm}{$plink} {$dm}[{$size}]</s>";
+                               : "<del>({$hlink}) {$dm}{$plink} {$dm}[{$size}]</del>";
        }
 }
 
index 95c598a..5760519 100644 (file)
@@ -2393,7 +2393,7 @@ A page is treated as disambiguation page if it uses a template which is linked f
 'doubleredirects-summary'    => '', # do not translate or duplicate this message to other languages
 '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 the "real" target page, which the first redirect should point to.
-<s>Crossed out</s> entries have been solved.',
+<del>Crossed out</del> entries have been solved.',
 'double-redirect-fixed-move' => '[[$1]] has been moved.
 It now redirects to [[$2]].',
 'double-redirect-fixer'      => 'Redirect fixer',