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.";