pauladaniel / calendardateselect

Automatically exported from code.google.com/p/calendardateselect
Other
0 stars 0 forks source link

Bug in db_format #135

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
In calendar_date_select.db in

    :db => {
      :date => "%Y-%m-%d",
      :time => "%H:%M",
      :javascript_include => "format_db"
    }

should be 

    :db => {
      :date => "%Y-%m-%d",
      :time => " %H:%M",
      :javascript_include => "format_db"
    }",

instead.

There is a missing space in front of %H, which makes the format unusable.

Original issue reported on code.google.com by andreasz...@gmail.com on 14 Oct 2008 at 10:35

GoogleCodeExporter commented 8 years ago

Original comment by timchar...@gmail.com on 30 Nov 2008 at 8:37