diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-05-26 00:25:50 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-05-26 00:25:50 +0000 |
commit | bb1679af9a8079e5531ef743e51c548a6e7e820b (patch) | |
tree | 0b7e113f2141d6a3f63fc96557049fb50c4a4bea /phpBB/includes/functions.php | |
parent | 0fee31117bf2573efbea4a8b2a70b16b648adb79 (diff) | |
download | forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.tar forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.tar.gz forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.tar.bz2 forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.tar.xz forums-bb1679af9a8079e5531ef743e51c548a6e7e820b.zip |
Lots of work on posting. New topic and reply functionality is mostly done. Edit post loads the form but needs database functionality
All this is only been tested on Postgres, donno if it works as well on MySQL yet, will test when I can get access to sourceforge again
git-svn-id: file:///svn/phpbb/trunk@328 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 9106c2c5ec..08cc9ed8f2 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -272,6 +272,14 @@ function create_date($format, $gmepoch, $tz) } // +// Create a GMT timestamp +// +function get_gmt_ts() +{ + return(gmmktime(gmdate("H, i, s, m, d, Y"))); +} + +// // Pagination routine, generates // page number sequence // |