BUGFIX: Error when no tags set
This commit is contained in:
parent
a1d9e971e3
commit
23f9765b3a
1 changed files with 8 additions and 6 deletions
|
@ -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";
|
||||
}
|
||||
|
|
Reference in a new issue