We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b9a6f9 + 389c2c2 commit 39e3c52Copy full SHA for 39e3c52
Mplusqapiclient.php
@@ -1751,6 +1751,11 @@ public function convertMplusDate($timestamp)
1751
'day' => date('j', $timestamp),
1752
'mon' => date('n', $timestamp),
1753
'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,
1759
);
1760
} // END convertMplusDate()
1761
@@ -1762,11 +1767,6 @@ public function convertMplusDateTime($timestamp)
1762
1767
1763
1768
1764
1769
1765
- 'hour' => date('H', $timestamp),
1766
- 'min' => date('i', $timestamp),
- 'sec' => date('s', $timestamp),
- 'isdst' => false,
- 'timezone' => 0,
1770
1771
} // END convertMplusDateTime()
1772
0 commit comments