-
Notifications
You must be signed in to change notification settings - Fork 2
/
forumsbackend.php
26 lines (24 loc) · 1.03 KB
/
forumsbackend.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
<?php
/************************************************************************/
/* nukeFEED
/* http://www.nukeSEO.com
/* Copyright © 2007 by Kevin Guske
/************************************************************************/
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (!defined('INCLUDE_PATH')) define('INCLUDE_PATH', './');
require_once 'config.php';
$host = $_SERVER['HTTP_HOST'];
$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
/*
* IF wrapper added by montego from http://montegoscripts.com for TegoNuke(tm) ShortLinks
*/
if (isset($tnsl_bUseShortLinks) && $tnsl_bUseShortLinks) {
header('Location: http://'.$host.$uri.'/feeds-2-rss20.xml');
} else {
header('Location: http://'.$host.$uri.'/modules.php?name=Feeds&fid=2&type=RSS20');
}
die();
?>