From d10e859d1b22291edc966889c7de86ba934a396e Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Thu, 13 Dec 2007 22:40:31 +0000 Subject: [PATCH] --- code/ArchiveWidget.php | 2 +- code/BlogHolder.php | 1 + code/TagCloudWidget.php | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/ArchiveWidget.php b/code/ArchiveWidget.php index bcee029..a04a788 100644 --- a/code/ArchiveWidget.php +++ b/code/ArchiveWidget.php @@ -9,7 +9,7 @@ class ArchiveWidget extends Widget { "DisplayMode" => "month" ); - static $title = "Archive"; + static $title = "Browse by Date"; static $cmsTitle = "Blog Archive"; static $description = "Show a list of months or years in which there are blog posts, and provide links to them."; diff --git a/code/BlogHolder.php b/code/BlogHolder.php index 2cb5f1e..7a481b5 100644 --- a/code/BlogHolder.php +++ b/code/BlogHolder.php @@ -213,6 +213,7 @@ class BlogHolder_Controller extends Page_Controller { $month['Link'] = $this->Link() . "showarchive/$month[Year]-$month[Month]"; $output->push(new ArrayData($month)); } + Debug::show($output); return $output; } diff --git a/code/TagCloudWidget.php b/code/TagCloudWidget.php index 05e9a19..7e8b08b 100644 --- a/code/TagCloudWidget.php +++ b/code/TagCloudWidget.php @@ -11,7 +11,7 @@ class TagCloudWidget extends Widget { "Sortby" => "alphabet" ); - static $title = "Tags"; + static $title = "Browse by Tag"; static $cmsTitle = "Tag Cloud"; static $description = "Shows a tag cloud of tags on your blog.";