Hooked up type links on item pages.
This commit is contained in:
4
TODO.md
4
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
|
||||
|
@ -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'];
|
||||
|
Reference in New Issue
Block a user