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'];