From 1ed2ff3c913ab1817a909f9de4b5a928d40de31f Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Mon, 4 May 2020 02:20:34 +0200 Subject: [PATCH] Code style: superfluous space --- .../lib/system/html/input/node/HtmlInputNodeFont.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeFont.class.php b/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeFont.class.php index 6ac33ed59d..3efbe859fc 100644 --- a/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeFont.class.php +++ b/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeFont.class.php @@ -98,7 +98,7 @@ class HtmlInputNodeFont extends AbstractHtmlInputNode { protected function convertToSpan(\DOMElement $element, $property, $value) { $span = $element->ownerDocument->createElement('span'); - $span->setAttribute('style', "{$property}: {$value}"); + $span->setAttribute('style', "{$property}: {$value}"); $element->parentNode->insertBefore($span, $element); $span->appendChild($element); -- 2.20.1