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

View File

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