From 433b5da2bb5ff81ccb2ec9a8c999d825632d8992 Mon Sep 17 00:00:00 2001 From: Albert S Date: Sun, 27 Mar 2022 08:30:20 +0200 Subject: [PATCH] template: Adjust after renaming: Use utils::toISODateTime() --- template.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template.cpp b/template.cpp index 00fd1e7..8a90528 100644 --- a/template.cpp +++ b/template.cpp @@ -141,7 +141,7 @@ std::string Template::renderRevisionList(const std::vector &revisions, << revision.revision << "" << "" << revision.author << "" << "" << revision.comment << "" - << "" << utils::toISODate(revision.timestamp) << ""; + << "" << utils::toISODateTime(revision.timestamp) << ""; } }; @@ -155,7 +155,7 @@ std::string Template::renderRevisionList(const std::vector &revisions, << "" << revision.revision << "" << "" << revision.author << "" << "" << revision.comment << "" - << "" << utils::toISODate(revision.timestamp) << ""; + << "" << utils::toISODateTime(revision.timestamp) << ""; } };