Chant detail: tags link to listings of tagged chants

This commit is contained in:
Jakub Pavlik 2024-01-11 21:21:28 +01:00
parent 2ebcda3f52
commit 9e400a609a

View File

@ -148,7 +148,7 @@ natcasesort($tags);
if(count($tags) > 0) {
echo "<h4>Tags</h4><ul>\n";
foreach($tags as $t) echo "<li>".$t."</li>\n";
foreach($tags as $tid => $ttag) echo "<li><a href=\"tag.php?id=".$tid."\">".$ttag."</a></li>\n";
echo "</ul>\n";
}