Fix RSS event feed item count in commons_events module

Regarding to changeset 206507, also need to upgrade the default
feed element count in commons_events module.

Change-Id: Iaceb8c8d84e3d656a3ebb228c66e2d2c4af76cff
This commit is contained in:
Marton Kiss 2015-08-04 12:05:24 +02:00
parent 11d664adfb
commit 4f9e38d86f
1 changed files with 2 additions and 0 deletions

View File

@ -295,6 +295,8 @@ function commons_events_views_default_views() {
$handler = $view->new_display('feed', 'Feed', 'feed');
$handler->display->display_options['defaults']['hide_admin_links'] = FALSE;
$handler->display->display_options['pager']['type'] = 'some';
$handler->display->display_options['pager']['options']['items_per_page'] = '50';
$handler->display->display_options['pager']['options']['offset'] = '0
$handler->display->display_options['style_plugin'] = 'rss';
$handler->display->display_options['row_plugin'] = 'node_rss';
$handler->display->display_options['path'] = 'events-upcoming.xml';