Gossamer Forum
Home : General : Perl Programming :

GT's Personalized Greeting Script

Quote Reply
GT's Personalized Greeting Script
How can I change the time zone of the Personalized Greeting script as seen on Gossamer-Threads' main page?

TIA
Quote Reply
Re: GT's Personalized Greeting Script In reply to
See the following codes:

Code:
localtime(time - 10800);

10800 is set to 3 hours behind EST (this is PST).

So, you will need to use 3600 as the base one hour value.

So, if you are let's say in MST, you would change the 10800 to 7200.

If you are ahead of EST, then you would change - 10800 to + 3600. Again, change 3600 to the value of hours ahead of EST.

Hope this helps.

Regards,

------------------
Eliot Lee....
Former Handle: Eliot
* Check Resource Center
* Search Forums
Quote Reply
Re: GT's Personalized Greeting Script In reply to
Fixed it. Thanks AnthroRules
Quote Reply
Re: GT's Personalized Greeting Script In reply to
You're welcome.

Regards,

------------------
Eliot Lee....
Former Handle: Eliot
* Check Resource Center
* Search Forums