DateTime.ToString fixes for other countries

Fixed: Aired Date sorting on Missing
This commit is contained in:
Mark McDowall 2012-12-05 17:54:09 -08:00
parent 7bdc10c370
commit feaf63c758
6 changed files with 10 additions and 8 deletions

View file

@ -1,4 +1,5 @@
using System;
using System.Globalization;
using System.Linq;
using System.Linq.Dynamic;
using System.Web.Mvc;
@ -45,7 +46,7 @@ namespace NzbDrone.Web.Controllers
Quality = h.Quality.ToString(),
IsProper = h.IsProper,
Date = h.Date.ToString(),
DateSorter = h.Date.ToString("MM/dd/yyyy h:mm:ss tt"),
DateSorter = h.Date.ToString("o", CultureInfo.InvariantCulture),
Indexer = h.Indexer,
EpisodeId = h.EpisodeId,
NzbInfoUrl = h.NzbInfoUrl,