From a0e3de1200b38a8a685b8eda2fe72e6eb66af52d Mon Sep 17 00:00:00 2001 From: manfromhuh Date: Sun, 17 Jul 2022 17:55:56 -0400 Subject: [PATCH] Update to use the new md_read.php --- common/authors/index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/authors/index.php b/common/authors/index.php index 162ff93..9af34d7 100644 --- a/common/authors/index.php +++ b/common/authors/index.php @@ -6,9 +6,11 @@ //If it is not then it is a menu page. if (file_exists('byline.md')){ include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/md_read.php'); + echo read_md('byline.md'); } if (file_exists('author.md')){ include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/md_read.php'); + echo read_md('author.md'); } include_once ($_SERVER['DOCUMENT_ROOT'].'/common/php/footer.php'); ?>