某些版塊默認只允許游客看到主題列表,不希望游客查看帖子內容,除非樓主或版主對指定帖子單獨設置了閱讀權限為游客可以訪問。
其它版塊保持以往的方式不動。
論壇中有關于閱讀權限的發帖時的默認值修改:
在X版以后:
找到
template/default/forum下的post_editor_attribute.htm
查找
<option value="$val[readaccess]" title="{lang readperm}: $val[readaccess]" {if $thread['readperm'] == $val[readaccess]} selected="selected"{/if}>$val[grouptitle]</option>
修改為
<option value="$val[readaccess]" title="{lang readperm}: $val[readaccess]" {if $_G[fid] == 4 || $_G[fid] == 5 || $_G[fid] == 6 || $_G[fid] == 13 && $val[readaccess] == 110} selected="selected"{/if} {if $thread['readperm'] == $val[readaccess]} selected="selected"{/if}>$val[grouptitle]</option>
4,5,6,13為fid,即版塊的id,110為權限值。
也就是插入了:
{if $_G[fid] == 4 || $_G[fid] == 5 || $_G[fid] == 6 || $_G[fid] == 13 && $val[readaccess] == 2} selected="selected"{/if}