-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrss.php
38 lines (35 loc) · 1.81 KB
/
rss.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the Revised BSD License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Revised BSD License for more details.
Copyright 2004-2023 iDB Support - https://idb.osdn.jp/support/category.php?act=view&id=1
Copyright 2004-2023 Game Maker 2k - https://idb.osdn.jp/support/category.php?act=view&id=2
$FileInfo: rss.php - Last Update: 6/16/2023 SVN 973 - Author: cooldude2k $
*/
if(ini_get("register_globals")) {
require_once('inc/misc/killglobals.php'); }
$pretime = explode(" ", microtime());
$utime = $pretime[0];
$time = $pretime[1];
$starttime = $utime + $time;
require_once('sql.php');
$idbactcheck = array("rss", "oldrss", "atom", "opml", "opensearch");
/*if($Settings['enable_search']=="off"||$GroupInfo['CanSearch']=="no") {
header("Content-Type: text/plain; charset=".$Settings['charset']);
ob_clean(); echo "Sorry you can not search on this board."; $urlstatus = 503;
gzip_page($Settings['use_gzip'],$GZipEncode['Type']); session_write_close(); die(); }*/
if($Settings['enable_rss']=="off") {
header("Content-Type: text/plain; charset=".$Settings['charset']);
ob_clean(); echo "Sorry RSS Feeds are not enabled for this board."; $urlstatus = 503;
gzip_page($Settings['use_gzip'],$GZipEncode['Type']); session_write_close(); die(); }
if($_GET['act']==null) { $_GET['act'] = "rss"; }
if(!in_array($_GET['act'], $idbactcheck)) { $_GET['act']="rss"; }
if($_GET['act']=="rss"||$_GET['act']=="oldrss"||$_GET['act']=="atom"||
$_GET['act']=="opml"||$_GET['act']=="opensearch") {
$_GET['feedtype'] = $_GET['act']; $Feed['Feed']="Done";
require($SettDir['inc'].'rssfeed.php'); }
?>