First commit
This commit is contained in:
30
archiver/index.php
Normal file
30
archiver/index.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
||||
* This is NOT a freeware, use is subject to license terms
|
||||
*
|
||||
* $Id: index.php 17587 2010-10-25 01:25:10Z monkey $
|
||||
*/
|
||||
|
||||
define('IN_ARCHIVER', 1);
|
||||
|
||||
chdir('../');
|
||||
|
||||
$querystring = $_SERVER['QUERY_STRING'];
|
||||
|
||||
if(!empty($_GET['action']) && !empty($_GET['value'])) {
|
||||
$querystring = $_GET['action'].'-'.$_GET['value'];
|
||||
}
|
||||
|
||||
if(substr($querystring, 0, 3) == 'fid') {
|
||||
$_GET['mod'] = 'forumdisplay';
|
||||
$_GET['fid'] = intval(substr($querystring, 4));
|
||||
} elseif(substr($querystring, 0, 3) == 'tid') {
|
||||
$_GET['mod'] = 'viewthread';
|
||||
$_GET['tid'] = intval(substr($querystring, 4));
|
||||
}
|
||||
|
||||
include 'forum.php';
|
||||
|
||||
?>
|
Reference in New Issue
Block a user