From 9f9c401ebed477ed36c935362afee9a3b7a700ae Mon Sep 17 00:00:00 2001 From: Daniel Messer Date: Sun, 6 Aug 2023 20:46:26 -0500 Subject: [PATCH] Hooked up type links on item pages. --- TODO.md | 4 ++-- itemrecord.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/TODO.md b/TODO.md index 9c15396..1f7f643 100644 --- a/TODO.md +++ b/TODO.md @@ -11,8 +11,6 @@ In no particular order, here is a semi-current list of things to be done in Info [ ] Item pages - Add clickable links on Series -[ ] Item pages - Add clickable links on Type - [ ] Item pages - Add clickable links on Subjects [ ] Add share button/link on item page @@ -21,6 +19,8 @@ In no particular order, here is a semi-current list of things to be done in Info [ ] Add image (mostly Pixabay) credits +[x] Item pages - Add clickable links on Type + [x] Item pages - Add clickable links on Creator [x] Item pages - Add clickable links on Identifiers diff --git a/itemrecord.php b/itemrecord.php index a90f832..9b60c24 100644 --- a/itemrecord.php +++ b/itemrecord.php @@ -247,7 +247,7 @@ while ($row = $series->fetchArray()) { } echo 'Publisher: '.$row_publisher.'
'; echo 'Date: '.$row_pubdate.'
'; - echo 'Type: '.$row_type.'
'; + echo 'Type: '.$row_type.'
'; echo 'Subjects: '; while ($row = $tags->fetchArray()) { $row_tags = $row['name'];