You are here

function theme_views_rss_feed_description in Views RSS 7

Same name and namespace in other branches
  1. 6 views/views_rss_views_fields.theme.inc \theme_views_rss_feed_description()

Theme function for feed description.

1 theme call to theme_views_rss_feed_description()
template_preprocess_views_view_views_rss_fields in views/views_rss_views_fields.theme.inc
Template preprocessor for views-view-views-rss-fields.tpl.php.

File

views/views_rss_views_fields.theme.inc, line 132

Code

function theme_views_rss_feed_description($variables) {
  $description = $variables['0'];
  $view = $variables['1'];
  return $description;
}