Browse Source

Fix Postgres/sqlite type error by using Postgres, closes #7

tags/last-sinatra-version
Adrian Short 12 years ago
parent
commit
6883b77410
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      views/candidate.haml

+ 2
- 2
views/candidate.haml View File

@@ -22,8 +22,8 @@
%td{ :style => "background-color: #{ccy['party_colour']}" }  
%td
%a{ :href => "/bodies/#{ccy['body_slug']}/elections/#{ccy['d']}" }
- bits = ccy['d'].split("-")
= long_date(Time.mktime(bits[0], bits[1], bits[2]))
-# Postgres returns ccy['d'] as a Date and sqlite returns it as a String
= long_date(ccy['d'].to_time)
%td= ccy['party_name']
%td
%a{ :href => "/bodies/#{ccy['body_slug']}" }


Loading…
Cancel
Save