aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/datetime.php43
1 files changed, 19 insertions, 24 deletions
diff --git a/phpBB/includes/datetime.php b/phpBB/includes/datetime.php
index d14693faa3..92aef88599 100644
--- a/phpBB/includes/datetime.php
+++ b/phpBB/includes/datetime.php
@@ -87,32 +87,27 @@ class phpbb_datetime extends DateTime
$midnight = clone $now;
$midnight->setTime(0, 0, 0);
- $midnight = $midnight->getTimestamp();
- $gmepoch = $this->getTimestamp();
+ $midnight = $midnight->getTimestamp();
+ $timestamp = $this->getTimestamp();
- if (!($gmepoch < $midnight - 86400 || $gmepoch > $midnight + 172800))
+ if ($timestamp > $midnight + 86400)
{
- $day = false;
-
- if ($gmepoch > $midnight + 86400)
- {
- $day = 'TOMORROW';
- }
- else if ($gmepoch > $midnight)
- {
- $day = 'TODAY';
- }
- else if ($gmepoch > $midnight - 86400)
- {
- $day = 'YESTERDAY';
- }
-
- if ($day !== false)
- {
- $format = self::_format_cache($format, $this->_user);
-
- return str_replace(self::RELATIVE_WRAPPER . self::RELATIVE_WRAPPER, $this->_user->lang['datetime'][$day], strtr(parent::format($format['format_short']), $format['lang']));
- }
+ $day = 'TOMORROW';
+ }
+ else if ($timestamp > $midnight)
+ {
+ $day = 'TODAY';
+ }
+ else if ($timestamp > $midnight - 86400)
+ {
+ $day = 'YESTERDAY';
+ }
+
+ if ($day !== false)
+ {
+ $format = self::_format_cache($format, $this->_user);
+
+ return str_replace(self::RELATIVE_WRAPPER . self::RELATIVE_WRAPPER, $this->_user->lang['datetime'][$day], strtr(parent::format($format['format_short']), $format['lang']));
}
}
}