Allow dots in URL
This commit is contained in:
parent
c2274ca92c
commit
5790962dee
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ class Text {
|
|||
}
|
||||
}
|
||||
|
||||
$string = preg_replace("/[^a-zA-Z0-9\/_|+ -]/", '', $string);
|
||||
$string = preg_replace("/[^a-zA-Z0-9\/_|+. -]/", '', $string);
|
||||
$string = self::lowercase($string);
|
||||
$string = preg_replace("/[\/_|+ -]+/", $separator, $string);
|
||||
$string = trim($string, '-');
|
||||
|
|
Loading…
Reference in a new issue