diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/content/blog/Blog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/blog/Blog.cpp b/src/content/blog/Blog.cpp index 52951de..4b34caf 100644 --- a/src/content/blog/Blog.cpp +++ b/src/content/blog/Blog.cpp @@ -216,7 +216,7 @@ void Blog::FillRenderData(RenderData & re, BlogEntry const & be) re["author"] = be->author; { char tmstr[64]; - if (std::strftime(tmstr, sizeof(tmstr), "%c", std::localtime(&be->createDate)) > 0) + if (std::strftime(tmstr, sizeof(tmstr), "%d.%m.%Y %H:%M", std::localtime(&be->createDate)) > 0) { re["createDate"] = tmstr; } @@ -227,7 +227,7 @@ void Blog::FillRenderData(RenderData & re, BlogEntry const & be) } { char tmstr[64]; - if (std::strftime(tmstr, sizeof(tmstr), "%c", std::localtime(&be->publishDate)) > 0) + if (std::strftime(tmstr, sizeof(tmstr), "%d.%m.%Y %H:%M", std::localtime(&be->publishDate)) > 0) { re["publishDate"] = tmstr; } |