Sort period transactions by "date", not by "d".

This commit is contained in:
John Wiegley 2009-02-10 05:05:36 -04:00
parent d726624e60
commit ba95808ab0

View file

@ -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"));
}
}