一、template\default\forum\viewthread_node.htm
查找:- <input type="checkbox" id="manage$post[pid]" class="pc" {if !empty($modclick)}checked="checked" {/if}onclick="pidchecked(this);modclick(this, $post[pid])" value="$post[pid]" autocomplete="off" />
- {lang manage}
复制代码 改成:- <!--{if $_G['forum']['ismoderator'] && $_G['group']['allowviewip']}-->
- <input type="checkbox" id="manage$post[pid]" class="pc" {if !empty($modclick)}checked="checked" {/if}onclick="pidchecked(this);modclick(this, $post[pid])" value="$post[pid]" autocomplete="off" />
- {lang manage}
- <!--{/if}-->
复制代码 二、template\default\forum\viewthread_node_body.htm
查找:- <!--{if $_G['group']['allowstickreply'] || $_G['forum_thread']['authorid'] == $_G['uid']}--> <a href="javascript:;" onclick="modaction('stickreply', $rpost[pid], '&undo=yes')" class="xi2">{lang admin_unstickreply}</a><!--{/if}-->
复制代码 改成:- <!--{if $_G['group']['allowstickreply']}--> <a href="javascript:;" onclick="modaction('stickreply', $rpost[pid], '&undo=yes')" class="xi2">{lang admin_unstickreply}</a><!--{/if}-->
复制代码 |