views-view-row-rss.tpl.php in Views (for Drupal 7) 6.3
Same filename and directory in other branches
views-view-row-rss.tpl.php Default view template to display a item in an RSS feed.
File
theme/views-view-row-rss.tpl.phpView source
<?php
/**
* @file views-view-row-rss.tpl.php
* Default view template to display a item in an RSS feed.
*
* @ingroup views_templates
*/
?>
<item>
<title><?php
print $title;
?></title>
<link><?php
print $link;
?></link>
<description><?php
print $description;
?></description>
<?php
print $item_elements;
?>
</item>