From 44a0aabd634a6a076dc463c2b38368c26a5afb0a Mon Sep 17 00:00:00 2001 From: Denis Kisselev Date: Tue, 23 Jul 2013 13:40:08 -0700 Subject: [PATCH] Added Date/Time of last modification to header --- libs/functions.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/libs/functions.php b/libs/functions.php index ab6b437..f2856a1 100644 --- a/libs/functions.php +++ b/libs/functions.php @@ -104,7 +104,19 @@ function load_page($tree) { if (isset($branch['type']) && $branch['type'] == 'file') { $html = ''; if ($branch['name'] !== 'index') { - $html .= ''; + $html .= ''; + } $html .= MarkdownExtended(file_get_contents($branch['path'])); return $html;