From a2efa08d3529758b67db5b8687f8df43de63f1d0 Mon Sep 17 00:00:00 2001 From: Arno Richter Date: Tue, 13 Dec 2022 23:45:48 +0100 Subject: display edit times of posts. add a config option to disable. --- index.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'index.php') diff --git a/index.php b/index.php index f435366..b2a0855 100644 --- a/index.php +++ b/index.php @@ -4,6 +4,8 @@ // check user credentials $config['logged_in'] = check_login(); + $config['show_edits'] = !empty($config['show_edits']) ? $config['show_edits'] : true; + // subpages $template = 'timeline'; if(is_numeric(path(0))) { -- cgit v1.2.3