Skip to content

Commit fca80d0

Browse files
committed
Replace strftime with date
1 parent 8e8fbc4 commit fca80d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FontLib/BinaryStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ public function readLongDateTime() {
282282
$date = 0;
283283
}
284284

285-
return strftime("%Y-%m-%d %H:%M:%S", $date);
285+
return date("Y-m-d H:i:s", $date);
286286
}
287287

288288
public function writeLongDateTime($data) {

0 commit comments

Comments
 (0)