aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/user.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/user.php')
-rw-r--r--phpBB/includes/user.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/user.php b/phpBB/includes/user.php
index df8f048c89..cc50d2b98e 100644
--- a/phpBB/includes/user.php
+++ b/phpBB/includes/user.php
@@ -631,7 +631,7 @@ class phpbb_user extends phpbb_session
$utc = new DateTimeZone('UTC');
}
- $time = new phpbb_datetime("@$gmepoch", $utc, $this);
+ $time = new phpbb_datetime($this, "@$gmepoch", $utc);
$time->setTimezone($this->tz);
return $time->format($format, $forcedate);
@@ -648,7 +648,7 @@ class phpbb_user extends phpbb_session
public function create_datetime($time = 'now', DateTimeZone $timezone = null)
{
$timezone = $timezone ?: $this->tz;
- return new phpbb_datetime($time, $timezone, $this);
+ return new phpbb_datetime($this, $time, $timezone);
}
/**