fix whitespace fixes
authorLupin <lupin-wp@users.mediawiki.org>
Tue, 7 Mar 2006 01:41:55 +0000 (01:41 +0000)
committerLupin <lupin-wp@users.mediawiki.org>
Tue, 7 Mar 2006 01:41:55 +0000 (01:41 +0000)
includes/SpecialDisambiguations.php
includes/SpecialPreferences.php
includes/Title.php

index 7bcb026..b14fd73 100644 (file)
@@ -38,8 +38,8 @@ class DisambiguationsPage extends PageQueryPage {
 
                $dp = Title::newFromText(wfMsgForContent('disambiguationspage'));
                $id = $dp->getArticleId();
-       $dns = $dp->getNamespace();
-       $dtitle = $dbr->addQuotes( $dp->getDBkey() );
+               $dns = $dp->getNamespace();
+               $dtitle = $dbr->addQuotes( $dp->getDBkey() );
 
                if($dns != NS_TEMPLATE) {
                        # FIXME we assume the disambiguation message is a template but
@@ -63,7 +63,7 @@ class DisambiguationsPage extends PageQueryPage {
 
        function formatResult( $skin, $result ) {
                $title = Title::newFromId( $result->value );
-       $dp = Title::makeTitle( $result->namespace, $result->title );
+               $dp = Title::makeTitle( $result->namespace, $result->title );
 
                $from = $skin->makeKnownLinkObj( $title,'');
                $edit = $skin->makeBrokenLinkObj( $title, "(".wfMsg("qbedit").")" , 'redirect=no');
index 1bbd501..5221ddf 100644 (file)
@@ -447,7 +447,7 @@ class PreferencesForm {
                } else if ( '' != $status ) {
                        $wgOut->addWikitext( $message . "\n----" );
                }
-               
+
                $qbs = $wgLang->getQuickbarSettings();
                $skinNames = $wgLang->getSkinNames();
                $mathopts = $wgLang->getMathNames();
@@ -891,7 +891,7 @@ class PreferencesForm {
        </div></form>\n" );
 
                $wgOut->addWikiText( '<div class="prefcache">' . wfMsg('clearyourcache') . '</div>' );
-       
+
        }
 }
 ?>
index 31842ae..09af48d 100644 (file)
@@ -50,8 +50,8 @@ class Title {
        var $mRestrictionsLoaded; # Boolean for initialisation on demand
        var $mPrefixedText;       # Text form including namespace/interwiki, initialised on demand
        var $mDefaultNamespace;   # Namespace index when there is no namespace
-                             # Zero except in {{transclusion}} tags
-       var $mWatched;      # Is $wgUser watching this page? NULL if unfilled, accessed through userIsWatching()
+                           # Zero except in {{transclusion}} tags
+       var $mWatched;      # Is $wgUser watching this page? NULL if unfilled, accessed through userIsWatching()
        /**#@-*/