View Single Post
Old December 10th, 2005, 03:19 AM   #9 (permalink)
quasan
Member
Verified Customer
 
Join Date: Dec 2003
Posts: 46
Send a message via AIM to quasan
the vb problem is, that you cannot disable the summertime settings for already existing users.

here is the sql query, if someones wants to disable this:

Automatic Summertime Detection
on: UPDATE user SET options=options + 64 WHERE NOT(options & 64)
off: UPDATE user SET options=options - 64 WHERE options & 64

Summertime Correction:
on: UPDATE user SET options=options + 128 WHERE NOT(options & 128)
off: UPDATE user SET options=options - 128 WHERE options & 128
quasan is offline   Reply With Quote