summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Kromlinger <hashworks@archlinux.org>2020-11-19 23:18:33 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2021-02-20 17:25:21 +0100
commit1d0c6ffe24c692d4279ce6ad6cb03aeb38a2303e (patch)
tree62c6db63f8899395b485c3317a6e42a7874f639f
parent78dbbd3dfa916e0b054a231ff7cd56049ff7dc2f (diff)
downloadaur-1d0c6ffe24c692d4279ce6ad6cb03aeb38a2303e.tar.gz
aur-1d0c6ffe24c692d4279ce6ad6cb03aeb38a2303e.tar.xz
RSS: Make sure image title matches channel title
https://validator.w3.org/feed/docs/warning/ImageTitleDoesntMatch.html Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r--web/html/rss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/rss.php b/web/html/rss.php
index 245a2171..5720d3d1 100644
--- a/web/html/rss.php
+++ b/web/html/rss.php
@@ -33,7 +33,7 @@ $rss->description = "The latest and greatest packages in the AUR";
$rss->link = "${protocol}://{$host}";
$rss->syndicationURL = "{$protocol}://{$host}" . get_uri('/rss/');
$image = new FeedImage();
-$image->title = "AUR";
+$image->title = "AUR Newest Packages";
$image->url = "{$protocol}://{$host}/css/archnavbar/aurlogo.png";
$image->link = $rss->link;
$image->description = "AUR Newest Packages Feed";