From 876403f5662866cc54e064bee927448115837c20 Mon Sep 17 00:00:00 2001 From: Alexandre Gravel-Raymond Date: Mon, 25 Feb 2013 16:24:56 +0100 Subject: [PATCH] Use absolute URLs in RSS feeds --- views/rss.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/rss.twig b/views/rss.twig index e14e783..0fdc823 100644 --- a/views/rss.twig +++ b/views/rss.twig @@ -3,13 +3,13 @@ Latest commits in {{ repo }}:{{ branch }} RSS provided by GitList - {{ path('homepage') }} + {{ url('homepage') }} {% for commit in commits %} {{ commit.message }} {{ commit.author.name }} authored {{ commit.shortHash }} in {{ commit.date | date('d/m/Y \\a\\t H:i:s') }} - {{ path('commit', {repo: repo, commit: commit.hash}) }} + {{ url('commit', {repo: repo, commit: commit.hash}) }} {{ commit.date | date('r') }} {% endfor %}