Hooked up type links on item pages.

This commit is contained in:
2023-08-06 20:46:26 -05:00
parent 1f16c6adc1
commit 9f9c401ebe
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -247,7 +247,7 @@ while ($row = $series->fetchArray()) {
}
echo '<strong>Publisher:</strong> '.$row_publisher.'<br />';
echo '<strong>Date: </strong>'.$row_pubdate.'<br />';
echo '<strong>Type: </strong>'.$row_type.'<br />';
echo '<strong>Type: </strong> <a href="results.php?ty='.$row_type.'">'.$row_type.'</a><br />';
echo '<strong>Subjects: </strong>';
while ($row = $tags->fetchArray()) {
$row_tags = $row['name'];