diff options
Diffstat (limited to 'views/rss/annotation')
-rw-r--r-- | views/rss/annotation/default.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/views/rss/annotation/default.php b/views/rss/annotation/default.php index 375a3d5ac..f96e85632 100644 --- a/views/rss/annotation/default.php +++ b/views/rss/annotation/default.php @@ -25,5 +25,14 @@ <pubDate><?php echo date("r",$vars['entity']->time_created) ?></pubDate>
<link><?php echo $vars['entity']->getURL(); ?>#<?php echo $vars['annotation']->id; ?></link>
<title><![CDATA[<?php echo $title; ?>]]></title>
- <description><![CDATA[<?php echo (autop($vars['annotation']->value)); ?>]]></description>
+ <description><![CDATA[<?php echo (autop($vars['annotation']->value)); ?>]]></description> + <?php + $owner = get_entity($vars['entity']->owner); + if ($owner) + { +?> + <dc:creator><?php echo $owner->name; ?></dc:creator> +<?php + } + ?>
</item>
|