If you set "First day of week:" in the edit page it is not remembered for next time the page is displayed.

The cause is a typo in "availability_calendars.module,v 1.1.4.1" line 480

#default_value' => variable_get('availability_'. $form['nid']['#value'] .'_startofweek', 1),

should be

#default_value' => variable_get('availability_calendars_'. $form['nid']['#value'] .'_startofweek', 1),

i.e. calendars_ has been mossed out.

hope this helps

Cliff

Comments

geodaniel’s picture

Status: Active » Fixed

Thanks Cliff, I've committed your fix to the D5 and D6 dev branches and will make some new releases soon.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

futurist’s picture

Status: Closed (fixed) » Active

[Edit: deleted comment, opened new issue]

futurist’s picture

Status: Active » Closed (fixed)