1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00

Allow all tags on articles

This commit is contained in:
DanieL 2022-11-01 15:07:24 -03:00
parent 9bf63db499
commit 10f6b2f510

View file

@ -33,6 +33,7 @@ class Articles extends PluginAbstract {
$obj = new stdClass(); $obj = new stdClass();
$obj->allowAttributes = false; $obj->allowAttributes = false;
$obj->allowCSS = false; $obj->allowCSS = false;
$obj->allowAllTags = false;
return $obj; return $obj;
} }