radiant / radiant-event-calendar-extension

Create, organise and display calendar events in your radiant site. Read, aggregate and serve ical subscriptions.
37 stars 13 forks source link

day of week doesn't work #21

Closed radixhound closed 13 years ago

radixhound commented 13 years ago

This is the code that is there

def day
  Date::DAYNAMES[start_date.day]
end

This is what it should be

def day
  Date::DAYNAMES[start_date.wday]
end
spanner commented 13 years ago

Thank you. Fixed now.