原帖由 koryako 于 2005-10-4 21:48 发表
麻烦你了,可是 我是以管理员的身份推荐的 为什么 还是告诉我 你没有权利推荐
为什么??
forumdisplay_article.php 的代码
define('CURRSCRIPT', 'forumdisplay');
require './include/common.php';
require DISCUZ_ROOT.'./include/forum.php';
$discuz_action = 2;
if($action == 'article') {
if($ismoderator){
if($thread[tid])
{
$tid=$thread[tid];
}
$db->query("UPDATE $table_threads SET article='1' WHERE tid='$tid'");
showmessage('成功推荐文章!',"javascript:history.go(-1)");
}else{
showmessage('您没有推荐的权利,请返回',"javascript:history.go(-1)");
}
}elseif($action == 'unarticle') {
if($ismoderator){
if($thread[tid])
{
$tid=$thread[tid];
}
$db->query("UPDATE $table_threads SET article='0' WHERE tid='$tid'");
showmessage('成功撤销文章!',"javascript:history.go(-1)");
}else{
showmessage('您没有撤销的权利,请返回',"javascript:history.go(-1)");
中
if($action == 'article') {
if($ismoderator){
if($thread[tid])
$ismoderator 指明是斑竹 可不包含管理员啊 |