mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Use UTF-8 in RSS feeds (fixes FS#10706).
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
389d3a552e
commit
888aad477c
1 changed files with 7 additions and 3 deletions
|
@ -8,9 +8,13 @@ include_once("feedcreator.class.php");
|
|||
$protocol = $_SERVER["HTTPS"]=='on' ? "https" : "http";
|
||||
$host = $_SERVER['HTTP_HOST'];
|
||||
|
||||
$rss = new RSSCreator20();
|
||||
|
||||
# Use UTF-8 (fixes FS#10706).
|
||||
$rss->encoding = "UTF-8";
|
||||
|
||||
#If there's a cached version <1hr old, won't regenerate now
|
||||
$rss = new UniversalFeedCreator();
|
||||
$rss->useCached("RSS2.0", "/tmp/aur-newestpkg.xml", 1800);
|
||||
$rss->useCached("/tmp/aur-newestpkg.xml", 1800);
|
||||
|
||||
#All the general RSS setup
|
||||
$rss->title = "AUR Newest Packages";
|
||||
|
@ -44,5 +48,5 @@ while ($row = mysql_fetch_assoc($result)) {
|
|||
}
|
||||
|
||||
#save it so that useCached() can find it
|
||||
$rss->saveFeed("RSS2.0","/tmp/aur-newestpkg.xml",true);
|
||||
$rss->saveFeed("/tmp/aur-newestpkg.xml",true);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue