New style for shared links. Preparation for changes in some addons

This commit is contained in:
Michael Vogel 2013-12-08 16:49:07 +01:00
parent 3b4a20f987
commit bae844e367
3 changed files with 39 additions and 1 deletions

View file

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