summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Cordero <theappleman@gmail.com>2011-10-05 14:48:55 +0800
committerYorhel <git@yorhel.nl>2011-10-05 09:28:16 +0200
commit4794f2c52167d65edc2ba4a2288cc6f974aa1a44 (patch)
tree0a7f615c62ea84491d6cd450106e5fc0be9b081a /lib
parent3b903c10625206e54af6864a8bb8f8f1f165e3ee (diff)
Multi::Feed: Also add the URL to the author's uri
See 3b903c10625206e54af6864a8bb8f8f1f165e3ee.
Diffstat (limited to 'lib')
-rw-r--r--lib/Multi/Feed.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Multi/Feed.pm b/lib/Multi/Feed.pm
index 78fdc214..ea9cbcac 100644
--- a/lib/Multi/Feed.pm
+++ b/lib/Multi/Feed.pm
@@ -123,7 +123,7 @@ sub write_atom { # num, res, feed, time
if($_->{username}) {
$x->tag('author');
$x->tag(name => $_->{username});
- $x->tag(uri => '/u'.$_->{uid}) if $_->{uid};
+ $x->tag(uri => $VNDB::S{url}.'/u'.$_->{uid}) if $_->{uid};
$x->end;
}
$x->tag(link => rel => 'alternate', type => 'text/html', href => $VNDB::S{url}.$_->{id}, undef);