1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-14 04:30:29 +01:00

[ticket/16823] Adjust wrapper condition

PHPBB3-16823
This commit is contained in:
rxu 2021-07-20 20:59:28 +07:00
parent e1fc0a9059
commit 2e29bb48fa
No known key found for this signature in database
GPG Key ID: 955F0567380E586A

View File

@ -97,7 +97,7 @@ class datetime extends \DateTime
$midnight = $midnight->getTimestamp();
if ($timestamp <= $midnight + 2 * 86400)
if ($timestamp < $midnight + 2 * 86400)
{
$day = false;