From 456a493ab582d21c86ee3f3077c770ef73634ae5 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 18 Jun 2009 22:13:05 -0400 Subject: [PATCH] Bug Fix - Att - The "due" date was not being parsed according to the desired dateformat, but in the default "m/d/Y". --- src/Att.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Att.cpp b/src/Att.cpp index 8e69018bc..2360de0cf 100644 --- a/src/Att.cpp +++ b/src/Att.cpp @@ -333,7 +333,7 @@ bool Att::validNameValue ( { // Validate and convert to epoch. if (value != "") - value = Date (value).toEpochString (); + value = Date (value, context.config.get ("dateformat", "m/d/Y")).toEpochString (); } else if (name == "recur")