From fbe582ccbcb4765dbe3df5b1ed92d77bf7a24380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Sat, 24 May 2025 16:48:38 +0300 Subject: [PATCH] minor formatting fix --- views/threads/post.etlua | 2 +- views/user/user.etlua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/views/threads/post.etlua b/views/threads/post.etlua index 3c05c6d..06622c2 100644 --- a/views/threads/post.etlua +++ b/views/threads/post.etlua @@ -24,7 +24,7 @@ <% if tonumber(post.edited_at) > tonumber(post.created_at) then -%> Edited at <%= os.date("%c", post.edited_at) %> <% else -%> - Posted at <%= os.date("%c", post.created_at) %> + Posted on <%= os.date("%c", post.created_at) %> <% end -%> diff --git a/views/user/user.etlua b/views/user/user.etlua index 2ad5489..f0dc350 100644 --- a/views/user/user.etlua +++ b/views/user/user.etlua @@ -29,7 +29,7 @@ <% if tonumber(post.edited_at) > tonumber(post.created_at) then -%> Edited in <%= post.thread_title %> at <%= os.date("%c", post.edited_at) %> <% else -%> - Posted in <%= post.thread_title %> at <%= os.date("%c", post.created_at) %> + Posted in <%= post.thread_title %> on <%= os.date("%c", post.created_at) %> <% end -%>