123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: search_user.php 36349 2017-01-16 03:05:23Z nemohou $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- define('NOROBOT', TRUE);
- $url = '';
- if($_G['setting']['domain']['app']['home'] || $_G['setting']['domain']['app']['default']) {
- $domain = '';
- if($_G['setting']['domain']['app']['home']) {
- $domain = $_G['setting']['domain']['app']['home'];
- } else {
- $domain = $_G['setting']['domain']['app']['default'];
- }
- $url = $_G['scheme'].'://'.$domain.$_G['siteport'].'/';
- }
- $url .= 'home.php?mod=spacecp&ac=search';
- if($_GET['srchtxt']) {
- $url .= '&username='.$_GET['srchtxt'].'&searchsubmit=yes';
- }
- dheader('Location: '.$url);
- ?>
|