1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: topicadmin_stamplist.php 30872 2012-06-27 10:11:44Z liulanbo $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- if(!$_G['group']['allowstamplist']) {
- showmessage('no_privilege_stamplist');
- }
- loadcache('stamps');
- if(!submitcheck('modsubmit')) {
- include template('forum/topicadmin_action');
- } else {
- $_GET['stamplist'] = $_GET['stamplist'] !== '' ? $_GET['stamplist'] : -1;
- $modaction = $_GET['stamplist'] >= 0 ? 'L'.sprintf('%02d', $_GET['stamplist']) : 'SLD';
- $reason = checkreasonpm();
- C::t('forum_thread')->update($_G['tid'], array('moderated'=>1, 'icon'=>$_GET['stamplist']));
- $resultarray = array(
- 'redirect' => "forum.php?mod=viewthread&tid=$_G[tid]&page=$page",
- 'reasonpm' => ($sendreasonpm ? array('data' => array($thread), 'var' => 'thread', 'notictype' => 'post', 'item' => $_GET['stamplist'] !== '' ? 'reason_stamplist_update' : 'reason_stamplist_delete') : array()),
- 'reasonvar' => array('tid' => $thread['tid'], 'subject' => $thread['subject'], 'modaction' => $modaction, 'reason' => $reason, 'stamp' => $_G['cache']['stamps'][$_GET['stamplist']]['text']),
- 'modaction' => $modaction,
- 'modlog' => $thread
- );
- $modpostsnum = 1;
- updatemodlog($_G['tid'], $modaction);
- }
- ?>
|