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:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user