1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: topicadmin_banpost.php 30872 2012-06-27 10:11:44Z liulanbo $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- if(!$_G['group']['allowbanpost']) {
- showmessage('no_privilege_banpost');
- }
- $topiclist = $_GET['topiclist'];
- $modpostsnum = count($topiclist);
- if(!($banpids = dimplode($topiclist))) {
- showmessage('admin_banpost_invalid');
- } elseif(!$_G['group']['allowbanpost'] || !$_G['tid']) {
- showmessage('admin_nopermission');
- }
- $posts = $authors = array();
- $banstatus = 0;
- foreach(C::t('forum_post')->fetch_all('tid:'.$_G['tid'], $topiclist) as $post) {
- if($post['tid'] != $_G['tid']) {
- continue;
- }
- $banstatus = ($post['status'] & 1) || $banstatus;
- $authors[$post['authorid']] = 1;
- $posts[] = $post;
- }
- $authorcount = count(array_keys($authors));
- if(!submitcheck('modsubmit')) {
- $banid = $checkunban = $checkban = '';
- foreach($topiclist as $id) {
- $banid .= '<input type="hidden" name="topiclist[]" value="'.$id.'" />';
- }
- $banstatus ? $checkunban = 'checked="checked"' : $checkban = 'checked="checked"';
- if($modpostsnum == 1 || $authorcount == 1) {
- include_once libfile('function/member');
- $crimenum = crime('getcount', $posts[0]['authorid'], 'crime_banpost');
- $crimeauthor = $posts[0]['author'];
- }
- include template('forum/topicadmin_action');
- } else {
- $banned = intval($_GET['banned']);
- $modaction = $banned ? 'BNP' : 'UBN';
- $reason = checkreasonpm();
- include_once libfile('function/member');
- $pids = $comma = '';
- foreach($posts as $k => $post) {
- if($banned) {
- C::t('forum_postcomment')->delete_by_rpid($post['pid']);
- C::t('forum_post')->increase_status_by_pid('tid:'.$_G['tid'], $post['pid'], 1, '|', true);
- crime('recordaction', $post['authorid'], 'crime_banpost', lang('forum/misc', 'crime_postreason', array('reason' => $reason, 'tid' => $_G['tid'], 'pid' => $post['pid'])));
- } else {
- C::t('forum_post')->increase_status_by_pid('tid:'.$_G['tid'], $post['pid'], 1, '^', true);
- }
- $pids .= $comma.$post['pid'];
- $comma = ',';
- }
- $resultarray = array(
- 'redirect' => "forum.php?mod=viewthread&tid=$_G[tid]&page=$page",
- 'reasonpm' => ($sendreasonpm ? array('data' => $posts, 'var' => 'post', 'item' => 'reason_ban_post', 'notictype' => 'post') : array()),
- 'reasonvar' => array('tid' => $thread['tid'], 'subject' => $thread['subject'], 'modaction' => $modaction, 'reason' => $reason),
- 'modtids' => 0,
- 'modlog' => $thread
- );
- }
- ?>
|