From adbb61d582d1ced4726dcdbfbc3008ad8ace8509 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Tue, 7 Jul 2009 16:13:58 +0000 Subject: [PATCH] Fixing some irritating whitespace --- includes/SpecialPage.php | 2 +- includes/parser/ParserOptions.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 29b4ded9ce..d67607cf53 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -823,7 +823,7 @@ Perhaps no page aliases are defined for it?" ); /** * Get a self-referential title object */ - function getTitle( $subpage = false) { + function getTitle( $subpage = false ) { return self::getTitleFor( $this->mName, $subpage ); } diff --git a/includes/parser/ParserOptions.php b/includes/parser/ParserOptions.php index e6a9f3a7ea..51a039f705 100644 --- a/includes/parser/ParserOptions.php +++ b/includes/parser/ParserOptions.php @@ -59,8 +59,8 @@ class ParserOptions function getExternalLinkTarget() { return $this->mExternalLinkTarget; } function getIsPreview() { return $this->mIsPreview; } function getIsSectionPreview() { return $this->mIsSectionPreview; } - function getIsPrintable() { return $this->mIsPrintable; } - + function getIsPrintable() { return $this->mIsPrintable; } + function getSkin() { if ( !isset( $this->mSkin ) ) { $this->mSkin = $this->mUser->getSkin(); @@ -107,8 +107,8 @@ class ParserOptions function setExternalLinkTarget( $x ) { return wfSetVar( $this->mExternalLinkTarget, $x ); } function setIsPreview( $x ) { return wfSetVar( $this->mIsPreview, $x ); } function setIsSectionPreview( $x ) { return wfSetVar( $this->mIsSectionPreview, $x ); } - function setIsPrintable( $x ) { return wfSetVar( $this->mIsPrintable, $x ); } - + function setIsPrintable( $x ) { return wfSetVar( $this->mIsPrintable, $x ); } + function __construct( $user = null ) { $this->initialiseFromUser( $user ); } -- 2.20.1