From: Marcel Werk Date: Wed, 21 Jan 2015 13:11:02 +0000 (+0100) Subject: Added an additional line-break after quotes in simplified-html mode X-Git-Tag: 2.1.0_Beta_4~63 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c7a3dafbfdc5b111235f168a1ab466adaea81c3f;p=GitHub%2FWoltLab%2FWCF.git Added an additional line-break after quotes in simplified-html mode --- diff --git a/wcfsetup/install/files/lib/system/bbcode/QuoteBBCode.class.php b/wcfsetup/install/files/lib/system/bbcode/QuoteBBCode.class.php index 899fc150f9..fce9a28601 100644 --- a/wcfsetup/install/files/lib/system/bbcode/QuoteBBCode.class.php +++ b/wcfsetup/install/files/lib/system/bbcode/QuoteBBCode.class.php @@ -48,7 +48,7 @@ class QuoteBBCode extends AbstractBBCode { return WCF::getTPL()->fetch('quoteBBCodeTag'); } else if ($parser->getOutputType() == 'text/simplified-html') { - return WCF::getLanguage()->getDynamicVariable('wcf.bbcode.quote.text', array('content' => $content, 'cite' => (!empty($openingTag['attributes'][0]) ? $openingTag['attributes'][0] : ''))); + return WCF::getLanguage()->getDynamicVariable('wcf.bbcode.quote.text', array('content' => $content, 'cite' => (!empty($openingTag['attributes'][0]) ? $openingTag['attributes'][0] : '')))."\n"; } } }