summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-01-01 15:25:58 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2021-01-01 15:25:58 +0100
commitb6eca948ade13bd5e0776794dd9840b1ff43ddb2 (patch)
tree4064244792eec879803291f46b9a928fd431c14a /index.php
parent227a3044c063c5455ef191c599082e978e80ee9b (diff)
downloadarchweb32-b6eca948ade13bd5e0776794dd9840b1ff43ddb2.tar.xz
fixed upstream news syndication
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.php b/index.php
index cca24ce..2f28d55 100644
--- a/index.php
+++ b/index.php
@@ -93,8 +93,9 @@ if ($news_reachable == 'YES') {
$news32 = false;
}
-$ch = curl_init("https://www.archlinux.org/feeds/news/");
+$ch = curl_init("https://archlinux.org/feeds/news/");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
+curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
$news64 = curl_exec($ch);
curl_close($ch);
$news64 = simplexml_load_string($news64);