Skip to content

Commit 39e3c52

Browse files
author
Mplus Software
committed
Conflicts: Mplusqapiclient.php
2 parents 7b9a6f9 + 389c2c2 commit 39e3c52

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Mplusqapiclient.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1751,6 +1751,11 @@ public function convertMplusDate($timestamp)
17511751
'day' => date('j', $timestamp),
17521752
'mon' => date('n', $timestamp),
17531753
'year' => date('Y', $timestamp),
1754+
'hour' => date('H', $timestamp),
1755+
'min' => date('i', $timestamp),
1756+
'sec' => date('s', $timestamp),
1757+
'isdst' => false,
1758+
'timezone' => 0,
17541759
);
17551760
} // END convertMplusDate()
17561761

@@ -1762,11 +1767,6 @@ public function convertMplusDateTime($timestamp)
17621767
'day' => date('j', $timestamp),
17631768
'mon' => date('n', $timestamp),
17641769
'year' => date('Y', $timestamp),
1765-
'hour' => date('H', $timestamp),
1766-
'min' => date('i', $timestamp),
1767-
'sec' => date('s', $timestamp),
1768-
'isdst' => false,
1769-
'timezone' => 0,
17701770
);
17711771
} // END convertMplusDateTime()
17721772

0 commit comments

Comments
 (0)