topicadmin_live.php
1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: topicadmin_live.php 32028 2012-10-31 10:12:22Z zhangjie $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
if(!$_G['group']['allowlivethread']) {
showmessage('no_privilege_livethread');
}
if(!submitcheck('modsubmit')) {
include template('forum/topicadmin_action');
} else {
$modaction = $_GET['live'] ? 'LIV' : 'LIC';
$reason = checkreasonpm();
$expiration = $_GET['expirationlive'] ? dintval($_GET['expirationlive']) : 0;
if($modaction == 'LIV') {
C::t('forum_forumfield')->update($_G['fid'], array('livetid' => $_G['tid']));
} elseif($modaction == 'LIC') {
if($_G['tid'] != $_G['forum']['livetid']) {
showmessage('topicadmin_live_noset_error');
}
C::t('forum_forumfield')->update($_G['fid'], array('livetid' => 0));
}
$resultarray = array(
'redirect' => "forum.php?mod=viewthread&tid=$_G[tid]&page=$page",
'reasonpm' => ($sendreasonpm ? array('data' => array($thread), 'var' => 'thread', 'notictype' => 'post', 'item' => $_GET['live'] ? 'reason_live_update' : 'reason_live_cancle') : array()),
'reasonvar' => array('tid' => $thread['tid'], 'subject' => $thread['subject'], 'modaction' => $modaction, 'reason' => $reason),
'modaction' => $modaction,
'modlog' => $thread
);
$modpostsnum = 1;
updatemodlog($_G['tid'], $modaction, $expiration, 0, '', $modaction == 'LIV' ? 1 : 0);
}
?>