From 23a7c22c70671f2d5467af629bc78d090ac1e340 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 27 Oct 2009 07:15:52 -0400 Subject: [PATCH] Use the WRITTEN date format for idstrings --- src/xact.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xact.cc b/src/xact.cc index f459b4a2..c0d1c724 100644 --- a/src/xact.cc +++ b/src/xact.cc @@ -368,7 +368,7 @@ value_t xact_t::magnitude() const string xact_t::idstring() const { std::ostringstream buf; - buf << *_date; + buf << format_date(*_date, FMT_WRITTEN); buf << payee; magnitude().print(buf); return buf.str();