show/hide this revision's text 2 added 4 characters in body

This may be a time zone issue. All dates are stored in the database as UTC, but you're using System.DateTime.Now which could be in another time zone. Try using System.DateTime.UtcNow and see if that gives you different results.

show/hide this revision's text 1

This may be a time zone issue. All dates are stored in the database as UTC, but you're using System.DateTime.Now which could be in another time zone. Try using System.DateTime.UtcNow and see if that gives you different results.