Set password operational

Sitewide plan for status messages
This commit is contained in:
2012-12-29 20:41:50 -05:00
parent ce6fd9c215
commit 8739251066
32 changed files with 332 additions and 144 deletions
+2 -2
View File
@@ -107,9 +107,9 @@ namespace MileageTraker.Web.Utility
public static string ToVerboseStringHistoric(this TimeSpan ts)
{
if (ts.TotalDays == 0)
if (ts.TotalDays < 1)
return "Today";
if (ts.TotalDays == 1)
if (ts.TotalDays < 2)
return "Yesterday";
var sb = new StringBuilder();