Fix edge cases in time splitter where inputs start with many digits but
are not dates
This commit is contained in:
		| @@ -514,10 +514,13 @@ final class NodaTimeSplitter { | ||||
|         // Further code requires a year to be present, skip if none is set | ||||
|         if (empty($year)) return []; | ||||
|  | ||||
|         // Skip, if dates are too long and do not contain spaces (= no translatable names) | ||||
|         if (str_contains($datum, " ") === false && strlen($datum) > 12) return []; | ||||
|  | ||||
|         foreach (self::MONTH_NAMES_HUNGARIAN as $monthVal => $monthValidNames) { | ||||
|             if (self::stri_occurs($datum, $monthValidNames)) { | ||||
|                 if (!empty($monat)) return []; | ||||
|                 $monat = (string)$monthVal; | ||||
|                 break; | ||||
|             } | ||||
|         } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user