View Single Post
  #1   IP: 49.87.40.250
Old 2015-03-07, 09:20 PM
Navassa Navassa is offline
初级会员
 
Join Date: 2012-10-02
Posts: 1
Navassa 现在声名狼藉
Default 教你如何设置自动禁用链接识别for dz x3.2

禁用连接识别在转发电影和某些资源非常重要,因为dz论坛会自动识别网址并加上连接,这样的导致某些下载地址不可用或者其他什么什么的,而每次都到右边点很麻烦,所以呢,教你弄成默认勾选禁用链接识别
很简单的,只需要添加几个字符就可以
Code:
02.checked="checked"
具体在哪添加呢
文件名:post_editor_attribute.htm
位置:/template/default/forum/

大概在200行,在这个文件中找到
Code:
<label for="parseurloff"><input type="checkbox" name="parseurloff" id="parseurloff" class="pc" value="1" $urloffcheck/>{lang disable}{lang post_parseurl}</label>
改成:
Code:
<label for="parseurloff"><input type="checkbox" name="parseurloff" id="parseurloff" class="pc" value="1" $urloffcheck checked="checked"/>{lang disable}{lang post_parseurl}</label>
Reply With Quote