BUGFIX: Error when no tags set

This commit is contained in:
mmk2410 2015-12-21 15:53:10 +01:00
parent a1d9e971e3
commit 23f9765b3a

View file

@ -93,6 +93,7 @@ class ArticleGenerator
echo "<span class='author'>$author</span>"; // print the author
}
if (isset($tags)) {
foreach ($tags as $tag) {
$blogurl = filter_input(INPUT_GET, "blog");
if ($blogurl == "") { // on main blog. no ?blog=
@ -101,6 +102,7 @@ class ArticleGenerator
echo "<a class='tag' href='./?blog=$blog&tag=$tag'>$tag</a> ";
}
}
}
echo "</section>" . "\n";
}