?? lock.php
字號(hào):
<?php
!function_exists('readover') && exit('Forbidden');
/****
@name:鎖定帖子道具
@type:帖子類
@effect:可以將自己發(fā)表的帖子鎖定,不讓其他會(huì)員回復(fù)此帖。
****/
if($tooldb['type']!=1){
Showmsg('tooluse_type_error'); // 判斷道具類型是否設(shè)置錯(cuò)誤
}
if($tpcdb['authorid'] != $winduid){
Showmsg('tool_authorlimit');
}
$db->update("UPDATE pw_threads SET locked='1',toolinfo=".pwEscape($tooldb['name'],false)."WHERE tid=".pwEscape($tid));
$db->update("UPDATE pw_usertool SET nums=nums-1 WHERE uid=".pwEscape($winduid)."AND toolid=".pwEscape($toolid));
$logdata=array(
'type' => 'use',
'descrip' => 'tool_11_descrip',
'uid' => $winduid,
'username' => $windid,
'ip' => $onlineip,
'time' => $timestamp,
'toolname' => $tooldb['name'],
'subject' => substrs($tpcdb['subject'],15),
'tid' => $tid,
);
writetoollog($logdata);
Showmsg('toolmsg_success');
?>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -