Rename function
authorCyperghost <olaf_schmitz_1@t-online.de>
Mon, 22 Jan 2024 10:48:08 +0000 (11:48 +0100)
committerOlaf Braun <info@braun-development.de>
Thu, 7 Mar 2024 15:36:44 +0000 (16:36 +0100)
wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeProcessor.class.php

index 41efb19e7a17109b1d72aa89fbcb270e8b569542..1a23a38ff2681204a03a663b9ac979a2d1e59522 100644 (file)
@@ -807,8 +807,8 @@ class HtmlInputNodeProcessor extends AbstractHtmlNodeProcessor
                 }
 
                 if (!$mayContainOtherContent) {
-                    $nextSibling = $this->getNoneEmptyNode($parentLinkElement, 'nextSibling');
-                    $previousSibling = $this->getNoneEmptyNode($parentLinkElement, 'previousSibling');
+                    $nextSibling = $this->getNonEmptyNode($parentLinkElement, 'nextSibling');
+                    $previousSibling = $this->getNonEmptyNode($parentLinkElement, 'previousSibling');
 
                     // Check whether the link is at the beginning or end of the paragraph
                     // and whether the next or previous sibling is a line break.
@@ -849,7 +849,7 @@ class HtmlInputNodeProcessor extends AbstractHtmlNodeProcessor
         }
     }
 
-    private function getNoneEmptyNode(?\DOMNode $element, string $property): ?\DOMNode
+    private function getNonEmptyNode(?\DOMNode $element, string $property): ?\DOMNode
     {
         while ($element = $element->{$property}) {
             if (!DOMUtil::isEmpty($element)) {