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