From c71a6e3c0400d8f87ee88d7fbb676a819110f531 Mon Sep 17 00:00:00 2001 From: Denis Kisselev Date: Thu, 6 Mar 2014 08:57:05 -0800 Subject: [PATCH] Daddyfix's modified time fix. --- libs/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/functions.php b/libs/functions.php index b47cdd1..0204863 100644 --- a/libs/functions.php +++ b/libs/functions.php @@ -150,6 +150,7 @@ } else { $page['path'] = str_replace($docs_path . '/', "", $file); $page['markdown'] = file_get_contents($file); + $page['modified'] = filemtime($file); $page['content'] = MarkDownExtended($page['markdown']); $page['title'] = clean_url($file, 'Title'); }