From: Niklas Laxström Date: Tue, 7 Jul 2009 16:13:58 +0000 (+0000) Subject: Fixing some irritating whitespace X-Git-Tag: 1.31.0-rc.0~41067 X-Git-Url: http://git.cyclocoop.org/%22%2C%20generer_url_ecrire%28?a=commitdiff_plain;h=adbb61d582d1ced4726dcdbfbc3008ad8ace8509;p=lhc%2Fweb%2Fwiklou.git Fixing some irritating whitespace --- 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 ); }