2016-12-15 08:20:54 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
|
|
* This is NOT a freeware, use is subject to license terms
|
|
|
|
*
|
|
|
|
* $Id: search.php 34131 2013-10-17 03:54:09Z andyzheng $
|
|
|
|
*/
|
|
|
|
|
|
|
|
define('APPTYPEID', 0);
|
|
|
|
define('CURSCRIPT', 'search');
|
|
|
|
|
|
|
|
require './source/class/class_core.php';
|
|
|
|
|
|
|
|
$discuz = C::app();
|
|
|
|
|
2017-07-08 03:55:56 -04:00
|
|
|
$modarray = array('user', 'curforum', 'newthread');
|
2016-12-15 08:20:54 -05:00
|
|
|
|
|
|
|
$cachelist = $slist = array();
|
|
|
|
$mod = '';
|
|
|
|
$discuz->cachelist = $cachelist;
|
|
|
|
$discuz->init();
|
|
|
|
|
|
|
|
if(in_array($discuz->var['mod'], $modarray) || !empty($_G['setting']['search'][$discuz->var['mod']]['status'])) {
|
|
|
|
$mod = $discuz->var['mod'];
|
|
|
|
} else {
|
|
|
|
foreach($_G['setting']['search'] as $mod => $value) {
|
|
|
|
if(!empty($value['status'])) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(empty($mod)) {
|
|
|
|
showmessage('search_closed');
|
|
|
|
}
|
|
|
|
define('CURMODULE', $mod);
|
|
|
|
|
|
|
|
|
|
|
|
runhooks();
|
|
|
|
|
|
|
|
require_once libfile('function/search');
|
|
|
|
|
|
|
|
|
|
|
|
$navtitle = lang('core', 'title_search');
|
|
|
|
|
|
|
|
if($mod == 'curforum') {
|
|
|
|
$mod = 'forum';
|
|
|
|
$_GET['srchfid'] = array($_GET['srhfid']);
|
|
|
|
} elseif($mod == 'forum') {
|
|
|
|
$_GET['srhfid'] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
require DISCUZ_ROOT.'./source/module/search/search_'.$mod.'.php';
|
|
|
|
|
|
|
|
?>
|