找到;
----------------
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)作者: 蚂蚁 时间: 2006-7-15 04:03