Browse Source

Fix PHP7 compat. break in last commit

pull/9518/head
Aleksander Machniak 2 years ago
parent
commit
fa492b8428
  1. 2
      program/lib/Roundcube/rcube_utils.php

2
program/lib/Roundcube/rcube_utils.php

@ -1517,7 +1517,7 @@ class rcube_utils
return $date->format($format);
}
catch (Exception) {
catch (Exception $e) {
// ignore, fallback to date()
}
}

Loading…
Cancel
Save