summaryrefslogtreecommitdiffstats
path: root/web/html/rss.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/html/rss.php')
-rw-r--r--web/html/rss.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/web/html/rss.php b/web/html/rss.php
index 05478154..d0a202b8 100644
--- a/web/html/rss.php
+++ b/web/html/rss.php
@@ -5,10 +5,12 @@ include_once("aur.inc");
include_once("feedcreator.class.php");
#detect prefix
-$protocol = $_SERVER["HTTPS"]=='on' ? "https" : "http";
+$protocol = isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"]=='on' ? "https" : "http";
$host = $_SERVER['HTTP_HOST'];
$rss = new RSSCreator20();
+$rss->cssStyleSheet = false;
+$rss->xslStyleSheet = false;
# Use UTF-8 (fixes FS#10706).
$rss->encoding = "UTF-8";