From 96a056a00c2ca8f29355422603267aeaa305853a Mon Sep 17 00:00:00 2001 From: Cynthia Mijares Date: Tue, 16 Sep 2014 15:36:59 -0700 Subject: [PATCH] BASIC-842 | See more news is sentence case BASIC-1012 | Fix See more news link on homepage block --- modules/stanford_news_views/stanford_news_views.info | 2 +- .../stanford_news_views.views_default.inc | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/stanford_news_views/stanford_news_views.info b/modules/stanford_news_views/stanford_news_views.info index 00ff3d9..544dd67 100644 --- a/modules/stanford_news_views/stanford_news_views.info +++ b/modules/stanford_news_views/stanford_news_views.info @@ -2,7 +2,7 @@ name = Stanford News Views description = Views for the stanford_news module and content type. core = 7.x package = Stanford -version = 7.x-1.0-alpha2 +version = 7.x-1.0-alpha3 project = stanford_news_views dependencies[] = ctools dependencies[] = date diff --git a/modules/stanford_news_views/stanford_news_views.views_default.inc b/modules/stanford_news_views/stanford_news_views.views_default.inc index 8c96acd..f6eefb0 100644 --- a/modules/stanford_news_views/stanford_news_views.views_default.inc +++ b/modules/stanford_news_views/stanford_news_views.views_default.inc @@ -298,7 +298,7 @@ function stanford_news_views_views_default_views() { 'postpone_processing' => 0, ), ); - /* Field: Field: Featured Image */ + /* Field: Field: Image */ $handler->display->display_options['fields']['field_s_image_info']['id'] = 'field_s_image_info'; $handler->display->display_options['fields']['field_s_image_info']['table'] = 'field_data_field_s_image_info'; $handler->display->display_options['fields']['field_s_image_info']['field'] = 'field_s_image_info'; @@ -465,7 +465,7 @@ function stanford_news_views_views_default_views() { /* Display: Master */ $handler = $view->new_display('default', 'Master', 'default'); $handler->display->display_options['use_more_always'] = TRUE; - $handler->display->display_options['use_more_text'] = 'See More News'; + $handler->display->display_options['use_more_text'] = 'See more news'; $handler->display->display_options['link_display'] = 'custom_url'; $handler->display->display_options['access']['type'] = 'perm'; $handler->display->display_options['cache']['type'] = 'none'; @@ -678,7 +678,7 @@ function stanford_news_views_views_default_views() { $handler->display->display_options['display_description'] = 'Homepage block of two items'; $handler->display->display_options['defaults']['use_more'] = FALSE; $handler->display->display_options['use_more'] = TRUE; - $handler->display->display_options['link_url'] = 'news'; + $handler->display->display_options['link_url'] = 'news/recent-news'; $handler->display->display_options['defaults']['pager'] = FALSE; $handler->display->display_options['pager']['type'] = 'some'; $handler->display->display_options['pager']['options']['items_per_page'] = '2';