@@ -47,7 +47,7 @@ |
||
47 | 47 | $addYears = 0; |
48 | 48 | $dateCreateInput = preg_replace_callback( |
49 | 49 | '~\d{5,}(?=(?:-\d+-\d+|\d{4})(?:\s+|T)\d)~', // supports both dash-separated date/time parts and also the |
50 | - // form without dash separators |
|
50 | + // form without dash separators |
|
51 | 51 | function ($y) use (&$addYears) { |
52 | 52 | $res = $y[0] % 10000; |
53 | 53 | $addYears = $y[0] - $res; |