Commit a33f94c8 authored by Hernâni Borges de Freitas's avatar Hernâni Borges de Freitas
Browse files

Issue #3264467: PHP8 compatiblity

parent 11bc3072
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -189,7 +189,7 @@ class TestDateTime extends DrupalDatetime {
    }

    // Interpret the filled-in time using the timezone.
    $date = \DateTime::createFromFormat('Y-n-j-H-i-s', implode($filled, '-'), $timezone);
    $date = \DateTime::createFromFormat('Y-n-j-H-i-s', implode('-', $filled), $timezone);
    return $date;
  }