From f4fc716c0b71747e9b8ea1f16491311d4cebb513 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Joann=20M=C3=B5ndresku?= Date: Sat, 8 Jan 2022 17:58:56 +0200 Subject: [PATCH] Use D/M/Y for dates regardless of system locale --- blogit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blogit b/blogit index e54f9e3..378b94b 100755 --- a/blogit +++ b/blogit @@ -6,8 +6,8 @@ include config endif # The following can be configured in config -BLOG_DATE_FORMAT_INDEX ?= %x -BLOG_DATE_FORMAT ?= %x %X +BLOG_DATE_FORMAT_INDEX ?= %d/%m/%Y +BLOG_DATE_FORMAT ?= %d/%m/%Y %X BLOG_TITLE ?= blog BLOG_DESCRIPTION ?= blog BLOG_URL_ROOT ?= http://localhost/blog -- 2.25.1