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

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