From: Hypolite Petovan Date: Wed, 2 Nov 2016 03:08:26 +0000 (-0400) Subject: bbcode documentation: improve cleancss X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aff467adf2f399b64a05c332751cf517f4bf0099;p=friendica.git bbcode documentation: improve cleancss --- diff --git a/include/bbcode.php b/include/bbcode.php index 6d56587ab1..ebafc353a4 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -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; }