diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-04-16 00:45:18 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-04-16 00:45:18 +0000 |
commit | b7acb6b54b27db1f4f139cc6091ea3d4694b1d6f (patch) | |
tree | 6880f45bc63ec22f9e46ac4cb1f675bfbc33bf1a /phpBB | |
parent | a6445a284108cb5500b16f32c69521e95606d205 (diff) | |
download | forums-b7acb6b54b27db1f4f139cc6091ea3d4694b1d6f.tar forums-b7acb6b54b27db1f4f139cc6091ea3d4694b1d6f.tar.gz forums-b7acb6b54b27db1f4f139cc6091ea3d4694b1d6f.tar.bz2 forums-b7acb6b54b27db1f4f139cc6091ea3d4694b1d6f.tar.xz forums-b7acb6b54b27db1f4f139cc6091ea3d4694b1d6f.zip |
yet another file that did not appear to commit
git-svn-id: file:///svn/phpbb/trunk@158 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/functions/functions.php | 7 |
1 files changed, 7 insertions, 0 deletions
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 |