Fix indentation
authorRoan Kattouw <catrope@users.mediawiki.org>
Mon, 27 Sep 2010 12:30:04 +0000 (12:30 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Mon, 27 Sep 2010 12:30:04 +0000 (12:30 +0000)
includes/parser/ParserOutput.php

index ac89cc9..f6412fc 100644 (file)
@@ -116,7 +116,7 @@ class ParserOutput extends CacheTime
                $mHideNewSection = false,     # Hide the new section link?
                $mNoGallery = false,          # No gallery on category page? (__NOGALLERY__)
                $mHeadItems = array(),        # Items to put in the <head> section
-               $mModules = array(),              # Modules to be loaded by the resource loader
+               $mModules = array(),          # Modules to be loaded by the resource loader
                $mOutputHooks = array(),      # Hook tags as per $wgParserOutputHooks
                $mWarnings = array(),         # Warning text to be returned to the user. Wikitext formatted, in the key only
                $mSections = array(),         # Table of contents
@@ -147,7 +147,7 @@ class ParserOutput extends CacheTime
        function &getExternalLinks()         { return $this->mExternalLinks; }
        function getNoGallery()              { return $this->mNoGallery; }
        function getHeadItems()              { return $this->mHeadItems; }
-       function getModules()                    { return $this->mModules; }
+       function getModules()                { return $this->mModules; }
        function getSubtitle()               { return $this->mSubtitle; }
        function getOutputHooks()            { return (array)$this->mOutputHooks; }
        function getWarnings()               { return array_keys( $this->mWarnings ); }