From: Platonides Date: Thu, 16 Jun 2011 16:54:06 +0000 (+0000) Subject: Revert r88988 X-Git-Tag: 1.31.0-rc.0~29500 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_del%27%2C%20idvote=vote.voteid%29%20%7D%7D?a=commitdiff_plain;h=e23aadab894c734448b24c495ad78e2a500d26e0;p=lhc%2Fweb%2Fwiklou.git Revert r88988 --- diff --git a/includes/parser/ParserOptions.php b/includes/parser/ParserOptions.php index 8dd545bbfc..3b9b2d7808 100644 --- a/includes/parser/ParserOptions.php +++ b/includes/parser/ParserOptions.php @@ -60,8 +60,9 @@ class ParserOptions { function getAllowExternalImages() { return $this->mAllowExternalImages; } function getAllowExternalImagesFrom() { return $this->mAllowExternalImagesFrom; } function getEnableImageWhitelist() { return $this->mEnableImageWhitelist; } - function getEditSection() { $this->optionUsed('editsection'); return $this->mEditSection; } - function getNumberHeadings() { $this->optionUsed('numberheadings'); return $this->mNumberHeadings; } + function getEditSection() { return $this->mEditSection; } + function getNumberHeadings() { $this->optionUsed('numberheadings'); + return $this->mNumberHeadings; } function getAllowSpecialInclusion() { return $this->mAllowSpecialInclusion; } function getTidy() { return $this->mTidy; } function getInterfaceMessage() { return $this->mInterfaceMessage; } @@ -75,13 +76,17 @@ class ParserOptions { function getEnableLimitReport() { return $this->mEnableLimitReport; } function getCleanSignatures() { return $this->mCleanSignatures; } function getExternalLinkTarget() { return $this->mExternalLinkTarget; } - function getMath() { $this->optionUsed('math'); return $this->mMath; } - function getThumbSize() { $this->optionUsed('thumbsize'); return $this->mThumbSize; } - function getStubThreshold() { $this->optionUsed('stubthreshold'); return $this->mStubThreshold; } + function getMath() { $this->optionUsed('math'); + return $this->mMath; } + function getThumbSize() { $this->optionUsed('thumbsize'); + return $this->mThumbSize; } + function getStubThreshold() { $this->optionUsed('stubthreshold'); + return $this->mStubThreshold; } function getIsPreview() { return $this->mIsPreview; } function getIsSectionPreview() { return $this->mIsSectionPreview; } - function getIsPrintable() { $this->optionUsed('printable'); return $this->mIsPrintable; } + function getIsPrintable() { $this->optionUsed('printable'); + return $this->mIsPrintable; } function getUser() { return $this->mUser; } function getPreSaveTransform() { return $this->mPreSaveTransform; }