33 lines
821 B
PHP
33 lines
821 B
PHP
|
<?php
|
||
|
/**
|
||
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
||
|
* This is NOT a freeware, use is subject to license terms
|
||
|
*
|
||
|
* $Id: group.php 31307 2012-08-10 02:10:56Z zhengqingpeng $
|
||
|
*/
|
||
|
|
||
|
define('APPTYPEID', 3);
|
||
|
define('CURSCRIPT', 'group');
|
||
|
|
||
|
|
||
|
require './source/class/class_core.php';
|
||
|
|
||
|
$discuz = C::app();
|
||
|
|
||
|
$cachelist = array('grouptype', 'groupindex', 'diytemplatenamegroup');
|
||
|
$discuz->cachelist = $cachelist;
|
||
|
$discuz->init();
|
||
|
|
||
|
$_G['disabledwidthauto'] = 0;
|
||
|
|
||
|
$modarray = array('index', 'my', 'attentiongroup');
|
||
|
$mod = !in_array($_G['mod'], $modarray) ? 'index' : $_G['mod'];
|
||
|
|
||
|
define('CURMODULE', $mod);
|
||
|
|
||
|
runhooks();
|
||
|
|
||
|
$navtitle = str_replace('{bbname}', $_G['setting']['bbname'], $_G['setting']['seotitle']['group']);
|
||
|
|
||
|
require DISCUZ_ROOT.'./source/module/group/group_'.$mod.'.php';
|
||
|
?>
|