This commit is contained in:
Michael 2019-12-27 01:15:54 +00:00
parent b1b3744759
commit 9b750345c7
1 changed files with 4 additions and 4 deletions

View File

@ -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]");