Commit c2d058a5 authored by Gregor Schmidt's avatar Gregor Schmidt

[#390] check to handle mysql2's early type casting

parent 13de4cc4
......@@ -131,7 +131,10 @@ class WikiPage < ActiveRecord::Base
unless @updated_on
if time = read_attribute(:updated_on)
# content updated_on was eager loaded with the page
@updated_on = Time.parse(time) rescue nil
unless time.is_a? Time
time = Time.parse(time) rescue nil
end
@updated_on = time
else
@updated_on = content && content.updated_on
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment