From b7acb6b54b27db1f4f139cc6091ea3d4694b1d6f Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 16 Apr 2001 00:45:18 +0000 Subject: [PATCH] yet another file that did not appear to commit git-svn-id: file:///svn/phpbb/trunk@158 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/functions/functions.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/phpBB/functions/functions.php b/phpBB/functions/functions.php index 86957f4a6f..eba819730e 100644 --- a/phpBB/functions/functions.php +++ b/phpBB/functions/functions.php @@ -409,4 +409,11 @@ function decode_ip($int_ip) } +// +// Create date/time from format and timezone +// +function create_date($format, $gmepoch, $tz) +{ + return (date($format, $gmepoch + (3600 * $tz))); +} ?> \ No newline at end of file