1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-05 22:14:59 +02:00

[feature/new-tz-handling] Fix docs in phpbb_user class

PHPBB3-9558
This commit is contained in:
Joas Schilling 2012-06-20 00:29:31 +02:00
parent c7d32a1b2d
commit a5628cbdc8

View File

@ -29,6 +29,10 @@ class phpbb_user extends phpbb_session
var $help = array();
var $theme = array();
var $date_format;
/**
* DateTimeZone object holding the timezone of the user
*/
public $tz;
var $lang_name = false;
@ -125,7 +129,7 @@ class phpbb_user extends phpbb_session
if (is_numeric($this->tz))
{
// Might still be numeric by chance
// Might still be numeric
$this->tz = sprintf('Etc/GMT%+d', $this->tz);
}