begin of thinksaas 3.68

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2023-06-22 13:33:25 +08:00
commit 963ec1b2ea
2746 changed files with 331806 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
defined ( 'IN_TS' ) or die ( 'Access Denied.' );
$userid = aac ( 'user' )->isLogin ();
$arrGroupUser = $new['topic']->findAll('group_user',array(
'userid'=>$userid,
));
if($arrGroupUser==''){
tsNotice('请加入小组后再发帖!','点击去加入小组',tsUrl('group'));
}
foreach($arrGroupUser as $key=>$item){
$arrGroup[$key] = aac('group')->getOneGroup($item['groupid']);
}
$title = '选择发帖小组';
include template('group');