From 28183711c45116a7392607990ca57ca9095b854e Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 28 Aug 2011 16:39:05 -0400 Subject: [PATCH] Bug - The export command included the value of date fields instead of the name of date fields. --- src/Task.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Task.cpp b/src/Task.cpp index 3d1b7cee6..9fe3473c5 100644 --- a/src/Task.cpp +++ b/src/Task.cpp @@ -661,7 +661,7 @@ std::string Task::composeJSON (bool include_id /*= false*/) const { Date d (i->second); out << "\"" - << i->second + << i->first << "\":\"" << d.toISO () << "\"";