bbcode documentation: improve cleancss

This commit is contained in:
Hypolite Petovan 2016-11-01 23:08:26 -04:00
parent 6626ef64a9
commit aff467adf2

View file

@ -146,7 +146,7 @@ function cleancss($input) {
if (($char >= "a") and ($char <= "z"))
$cleaned .= $char;
if (!(strpos(" #;:0123456789-_", $char) === false))
if (!(strpos(" #;:0123456789-_.%", $char) === false))
$cleaned .= $char;
}