  

|
不好意思,需要补丁了。看最后。
程序下载: 此主题相关文件 051354.rar
安装方法及设置方法都在压缩包里,注意查看。
这是为防止论坛对代码的错误解释而做的,因为压缩包注释是完全文本的。
因为旧帖超过了我允许的修改期限,所以新发帖公布出来。
解决部分图片显示不出来的补丁:
找到;
----------------
imgpos = instr(topconte,"<img")
----------
下面加一行:
-------------------
if imgpos = 0 then imgpos = instr(topconte,"<img")
------------
解决调用回收站帖的问题:
找到:
----------------
topid = con.execute("select top 1 id from leadbbs_topic order by id desc" )(0)
----------------------------------
替换为:
---------------------------
topid = con.execute("select top 1 id from leadbbs_topic where boardid<>444 order by id desc" )(0)
-------------------------
解决调用置回复提帖的问题:
topid = con.execute("select top 1 id from leadbbs_topic where boardid=" & pic_boardid & " order by rootid desc" )(0)
替换为:
topid = con.execute("select top 1 id from leadbbs_topic where boardid=" & pic_boardid & " order by id desc" )(0) |
|