summaryrefslogtreecommitdiff
path: root/src/chain.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-10 05:05:36 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-10 05:05:36 -0400
commitba95808ab0751de4787b98b27a33afe47fbc4128 (patch)
tree38dbd98c41e70edb91bb8c574226f9bd5228dcc6 /src/chain.cc
parentd726624e60caa77354c7d4ef03cb564064316916 (diff)
downloadfork-ledger-ba95808ab0751de4787b98b27a33afe47fbc4128.tar.gz
fork-ledger-ba95808ab0751de4787b98b27a33afe47fbc4128.tar.bz2
fork-ledger-ba95808ab0751de4787b98b27a33afe47fbc4128.zip
Sort period transactions by "date", not by "d".
Diffstat (limited to 'src/chain.cc')
-rw-r--r--src/chain.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chain.cc b/src/chain.cc
index 2578387e..cf8c965d 100644
--- a/src/chain.cc
+++ b/src/chain.cc
@@ -116,7 +116,7 @@ xact_handler_ptr chain_xact_handlers(report_t& report,
if (report.HANDLED(period_)) {
handler.reset(new interval_xacts(handler, expr,
report.HANDLER(period_).str()));
- handler.reset(new sort_xacts(handler, "d"));
+ handler.reset(new sort_xacts(handler, "date"));
}
}