diff options
author | Chris Smith <toonarmy@phpbb.com> | 2010-04-20 21:01:20 +0100 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-14 22:57:29 -0400 |
commit | b2a812e36bc90d01f21da469823f4e759294b770 (patch) | |
tree | 6a84c326a28120ccbf7146ea7944802f81a32d7e | |
parent | 3559d2062480d5c3a0e94dae7388f9f1e5918ea7 (diff) | |
download | forums-b2a812e36bc90d01f21da469823f4e759294b770.tar forums-b2a812e36bc90d01f21da469823f4e759294b770.tar.gz forums-b2a812e36bc90d01f21da469823f4e759294b770.tar.bz2 forums-b2a812e36bc90d01f21da469823f4e759294b770.tar.xz forums-b2a812e36bc90d01f21da469823f4e759294b770.zip |
[feature/new-tz-handling] Correct capitalisation of phpbb_datetime.
PHPBB3-9558
-rw-r--r-- | phpBB/includes/session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/session.php b/phpBB/includes/session.php index ba9136b568..d8204e41f6 100644 --- a/phpBB/includes/session.php +++ b/phpBB/includes/session.php @@ -2093,7 +2093,7 @@ class user extends session $utc = new DateTimeZone('UTC'); } - $time = new phpbb_DateTime("@$gmepoch", $utc, $this); + $time = new phpbb_datetime("@$gmepoch", $utc, $this); $time->setTimezone($this->tz); return $time->format($format, $forcedate); |