diff options
-rw-r--r-- | web/html/rss.php | 2 | ||||
-rw-r--r-- | web/template/header.php | 2 | ||||
-rw-r--r-- | web/template/stats/updates_table.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/web/html/rss.php b/web/html/rss.php index 659ee15..1cf8753 100644 --- a/web/html/rss.php +++ b/web/html/rss.php @@ -16,7 +16,7 @@ $rss->useCached("RSS2.0", "/tmp/aur-newestpkg.xml", 1800); $rss->title = "AUR Newest Packages"; $rss->description = "The latest and greatest packages in the AUR"; $rss->link = "${protocol}://{$host}"; -$rss->syndicationURL = "{$protocol}://{$host}/rss2.php"; +$rss->syndicationURL = "{$protocol}://{$host}/rss.php"; $image = new FeedImage(); $image->title = "AUR"; $image->url = "{$protocol}://{$host}/images/AUR-logo-80.png"; diff --git a/web/template/header.php b/web/template/header.php index 303d735..53aae3f 100644 --- a/web/template/header.php +++ b/web/template/header.php @@ -9,7 +9,7 @@ <link rel='stylesheet' type='text/css' href='css/containers.css' /> <link rel='stylesheet' type='text/css' href='css/arch.css' /> <link rel='shortcut icon' href='images/favicon.ico' /> - <link rel='alternate' type='application/rss+xml' title='Newest Packages RSS' href='rss2.php' /> + <link rel='alternate' type='application/rss+xml' title='Newest Packages RSS' href='rss.php' /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> </head> <body> diff --git a/web/template/stats/updates_table.php b/web/template/stats/updates_table.php index 5e278b1..b9f6d6d 100644 --- a/web/template/stats/updates_table.php +++ b/web/template/stats/updates_table.php @@ -2,7 +2,7 @@ <tr> <th colspan="2" class="boxSoftTitle" style="text-align: right"> <span class="f3"><?php print __("Recent Updates") ?><span class="f5"></span></span> -<a href="rss2.php"><img src="images/feed-icon-14x14.png" alt="RSS Feed" /></a> +<a href="rss.php"><img src="images/feed-icon-14x14.png" alt="RSS Feed" /></a> </th> </tr> |