diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-22 23:58:00 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-22 23:58:00 -0500 |
commit | 08b0bbd0587b891ca9a4c8fa3a22cf7524c36265 (patch) | |
tree | 9acb330c10ed60d6559f7fbe3420460894bd925e /web/html/rss.php | |
parent | 38b1bbe78df3a518f0688e50f1d6361221b95ea1 (diff) |
these changes were sitting herepurweb/master0
Diffstat (limited to 'web/html/rss.php')
-rw-r--r-- | web/html/rss.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/html/rss.php b/web/html/rss.php index 2470d99..a88a6ef 100644 --- a/web/html/rss.php +++ b/web/html/rss.php @@ -26,15 +26,15 @@ $rss->xslStyleSheet = false; $rss->encoding = "UTF-8"; #All the general RSS setup -$rss->title = "AUR Newest Packages"; -$rss->description = "The latest and greatest packages in the AUR"; +$rss->title = config_get('options', 'branding_shortname') . " Newest Packages"; +$rss->description = "The latest and greatest packages in the " . config_get('options', 'branding_shortname'); $rss->link = "${protocol}://{$host}"; $rss->syndicationURL = "{$protocol}://{$host}" . get_uri('/rss/'); $image = new FeedImage(); -$image->title = "AUR"; +$image->title = config_get('options', 'branding_shortname'); $image->url = "{$protocol}://{$host}/images/AUR-logo-80.png"; $image->link = $rss->link; -$image->description = "AUR Newest Packages Feed"; +$image->description = config_get('options', 'branding_shortname') . " Newest Packages Feed"; $rss->image = $image; #Get the latest packages and add items for them |