Changed the date format so that start date and end date of the sprint don't

wrap.
pull/6827/head
Nate Lowrie 15 years ago
parent bdb1294c40
commit 22875a468d
  1. 2
      app/helpers/backlogs_helper.rb

@ -2,7 +2,7 @@ module BacklogsHelper
def backlog_date(backlog, field_name)
d = backlog.send(field_name)
d.nil? ? "(not set)" : d.strftime("%Y-%m-%d")
d.nil? ? "(not set)" : d.strftime("%m-%d-%y")
end
def mark_closed_if_so(item_or_task)

Loading…
Cancel
Save