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 -%>