Mixed Updates

This commit is contained in:
MatMasIt
2021-03-21 11:46:26 +01:00
committed by GitHub
parent f610299b72
commit 3ff6b494e8
6 changed files with 71 additions and 38 deletions

View File

@ -17,10 +17,10 @@ function rss($a)
<?php
foreach($a as $e){
echo "<item>";
echo "\n<title>".htmlentities($e["title"])."</title>\n";
echo "<description>".htmlentities($e["shortDescription"])."</description>\n";
echo "<link>https://www.innovationplaylist.eu/lens/app/api/view/UID/".htmlentities($e["UID"])."/render</link>\n";
echo "<pubDate>".htmlentities($e["publishedDate"])."</pubDate>";
echo "\n<title><![CDATA[".($e["title"])."]]></title>\n";
echo "<description><![CDATA[".($e["shortDescription"])."]]></description>\n";
echo "<link>https://www.innovationplaylist.eu/lens/app/api/view/UID/".($e["UID"])."/render</link>\n";
echo "<pubDate>".($e["publishedDate"])."</pubDate>";
echo "</item>";
}
?>
@ -28,4 +28,4 @@ function rss($a)
<?php
return ob_get_contents();
}
?>
?>