Bug Fix - Att

- The "due" date was not being parsed according to the desired dateformat,
  but in the default "m/d/Y".
This commit is contained in:
Paul Beckingham 2009-06-18 22:13:05 -04:00
parent 9c2e70b73a
commit 456a493ab5

View file

@ -333,7 +333,7 @@ bool Att::validNameValue (
{ {
// Validate and convert to epoch. // Validate and convert to epoch.
if (value != "") if (value != "")
value = Date (value).toEpochString (); value = Date (value, context.config.get ("dateformat", "m/d/Y")).toEpochString ();
} }
else if (name == "recur") else if (name == "recur")