From: <var...@us...> - 2009-09-05 10:48:36
|
Revision: 7099 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7099&view=rev Author: vargenau Date: 2009-09-05 10:48:26 +0000 (Sat, 05 Sep 2009) Log Message: ----------- More tags: thead, tfoot, tbody, th, sub, sup Modified Paths: -------------- trunk/lib/plugin/RawHtml.php Modified: trunk/lib/plugin/RawHtml.php =================================================================== --- trunk/lib/plugin/RawHtml.php 2009-09-01 11:40:33 UTC (rev 7098) +++ trunk/lib/plugin/RawHtml.php 2009-09-05 10:48:26 UTC (rev 7099) @@ -189,8 +189,8 @@ if ($allowedtags=="") { $allowedtags= array ( "p"=>1, "br"=>0, "a"=>1, "img"=>0, "li"=>1, "ol"=>1, "ul"=>1, "b"=>1, "i"=>1, "em"=>1, "strong"=>1, "del"=>1, "ins"=>1, - "u"=>1, "blockquote"=>1, "pre"=>1, "hr"=>0, - "table"=>1, "tr"=>1, "td"=>1, + "sub"=>1, "sup"=>1, "u"=>1, "blockquote"=>1, "pre"=>1, "hr"=>0, + "table"=>1, "thead"=>1, "tfoot"=>1, "tbody"=>1, "tr"=>1, "td"=>1, "th"=>1, ); } elseif (!is_array($allowedtags)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |