From 05fbdd594e5e8032c12afa60108fdb8315729c52 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 19 May 2014 20:16:25 -0400 Subject: [PATCH] CmdEdit - Now diplays an unmodifiable 'modified' attribute. --- src/commands/CmdEdit.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/CmdEdit.cpp b/src/commands/CmdEdit.cpp index bd14f094a..158c02b52 100644 --- a/src/commands/CmdEdit.cpp +++ b/src/commands/CmdEdit.cpp @@ -207,6 +207,7 @@ std::string CmdEdit::formatTask (Task task, const std::string& dateformat) << " Until: " << formatDate (task, "until", dateformat) << "\n" << " Recur: " << task.get ("recur") << "\n" << " Wait until: " << formatDate (task, "wait", dateformat) << "\n" + << "# Modified: " << formatDate (task, "modified", dateformat) << "\n" << " Parent: " << task.get ("parent") << "\n"; if (verbose)