diff --git a/.gitignore b/.gitignore index 9e1af679..0cac436c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ +.DS_Store includes/config.yaml.php includes/database.yaml.php \ No newline at end of file diff --git a/modules/tags/module.php b/modules/tags/module.php index 0824966b..8a60ee0a 100755 --- a/modules/tags/module.php +++ b/modules/tags/module.php @@ -213,7 +213,7 @@ function list_post_tags($post_id, $prefix = "Tags: ", $suffix = null, $fallback $tag_links = array(); $route = Route::current(); while ($tag = $get_tags->fetchObject()) { - $link_before = ($link) ? 'clean."/").'">' : '' ; + $link_before = ($link) ? 'clean."/").'" rel="tag">' : '' ; $link_after = ($link) ? '' : '' ; $tag_links[] = $link_before.$tag->name.$link_after; }