Quote:
Originally Posted by wi11ie1950
Hi San from what i can see it doesnt use VB country and time settings so if you correct it for India then it will still be wrong for those outside india.
I used the hack to hide the date and time behind the name and show on mouseover  
|
I have the same problem with San, my server is located in USA, while all times are using Greece time. What puzzled me, was that the way the info is shown, using vbdate function, the time should have been correct.
So, I tried using this code:
PHP Code:
$nothing=vbdate($vboptions['dateformat'].' '.$vboptions['timeformat'], time());
and it produces the correct time for my country. However, when it is called from the hack (admitedly with a different syntax, I have no idea what these 'true', and 'false' parameters do) , in showthread, it shows the wrong time.
So, I did some experimentation, and here is what I came up with. If you change the vbdate arguments used in the showthread, a little, you can have it show the proper time.
Change this:
PHP Code:
(".vbdate($vboptions['dateformat'], $+++++adarray[$whodata['userid']], true, true, false)
to this:
PHP Code:
(".vbdate($vboptions['dateformat'], $+++++adarray[$whodata['userid']], true, true, true)
Or if you do not want to see "Today" or "Yesterday", but just a plain date and time, change the code to:
[php]
PHP Code:
(".vbdate($vboptions['dateformat'], $+++++adarray[$whodata['userid']])
Here is a description of the vbdate function. The code is located in includes/functions.php
PHP Code:
function vbdate($format, $timestamp = TIMENOW, $doyestoday = false, $locale = true, $adjust = true, $gmdate = false)
Rgds
-----------
John