Skip to content
Snippets Groups Projects
Commit 3ef8db56 authored by Maximilian Giller's avatar Maximilian Giller :squid:
Browse files

Simplyfying the space name even more

parent 2be79192
No related branches found
No related tags found
No related merge requests found
Pipeline #55312 passed
...@@ -57,5 +57,8 @@ function ks_escape_space_name($space_name) { ...@@ -57,5 +57,8 @@ function ks_escape_space_name($space_name) {
$space_name = str_replace("/", "-", $space_name); $space_name = str_replace("/", "-", $space_name);
$space_name = str_replace("\\", "-", $space_name); $space_name = str_replace("\\", "-", $space_name);
$space_name = str_replace(".", "-", $space_name); $space_name = str_replace(".", "-", $space_name);
return $space_name; $space_name = str_replace(";", "-", $space_name);
$space_name = str_replace(":", "-", $space_name);
$space_name = str_replace(",", "-", $space_name);
return strtolower($space_name);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment