From: Michael Date: Fri, 27 Dec 2019 01:15:54 +0000 (+0000) Subject: Arrays X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9b750345c762cc9a58bb695a63aec4c90a0bb6cf;p=friendica.git Arrays --- diff --git a/src/Content/Text/HTML.php b/src/Content/Text/HTML.php index 9ff615edb5..8a54c26a7c 100644 --- a/src/Content/Text/HTML.php +++ b/src/Content/Text/HTML.php @@ -290,10 +290,10 @@ class HTML self::tagToBBCode($doc, 'hr', [], "[hr]", ""); - self::tagToBBCode($doc, 'table', array(), "[table]", "[/table]"); - self::tagToBBCode($doc, 'th', array(), "[th]", "[/th]"); - self::tagToBBCode($doc, 'tr', array(), "[tr]", "[/tr]"); - self::tagToBBCode($doc, 'td', array(), "[td]", "[/td]"); + self::tagToBBCode($doc, 'table', [], "[table]", "[/table]"); + self::tagToBBCode($doc, 'th', [], "[th]", "[/th]"); + self::tagToBBCode($doc, 'tr', [], "[tr]", "[/tr]"); + self::tagToBBCode($doc, 'td', [], "[td]", "[/td]"); self::tagToBBCode($doc, 'h1', [], "[h1]", "[/h1]"); self::tagToBBCode($doc, 'h2', [], "[h2]", "[/h2]");