BUGFIX: Fix tag links when blog is on home pages

This commit is contained in:
Andrew O'Neil 2009-10-27 03:13:33 +00:00
parent 9545d4f87c
commit 1af9fafdd7
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class BlogEntry extends Page {
foreach($tags as $tag) {
$output->push(new ArrayData(array(
'Tag' => $tag,
'Link' => $this->getParent()->Link() . 'tag/' . urlencode($tag),
'Link' => $this->getParent()->Link('tag') . '/' . urlencode($tag),
'URLTag' => urlencode($tag)
)));
}