Remove "közott" for timespans

This commit is contained in:
Joshua Ramon Enslin 2020-09-18 19:17:10 +02:00 committed by Stefan Rohde-Enslin
parent f05938c867
commit 130140e910

View File

@ -104,6 +104,7 @@ final class NodaTimeSplitter {
while (strpos($input, " -") !== false) $input = str_replace(" -", "-", $input);
while (strpos($input, "- ") !== false) $input = str_replace("- ", "-", $input);
if (stripos($input, "között") !== false) $input = str_replace("között", " ", $input);
return trim($input, ", [](){}");