Editing users fails in Drupal when the timezone is set to Australia/ACT as the resulting data is too long for a varchar(8):
timezone = '258|36000'

Manually altering the database to change it to a varchar(12) has resolved the problem:
alter table users alter column timezone type varchar(12);

Comments

deece’s picture

Database is PostgreSQL 8.3.5.

Status: Active » Closed (outdated)

Automatically closed because Drupal 6 is no longer supported. If the issue verifiably applies to later versions, please reopen with details and update the version.