This commit is contained in:
Jakub Pavlík 2024-01-11 21:30:10 +01:00 committed by GitHub
commit 6da6a48419
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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";
}