I got a "file could not be found" error message when I tried editing an archived post on a heavily modded 3.4.04, but my post_info is untouched. I don't have a fresh forum to check, so I would appreciate it if someone can check this for me.
Anyway this fixed it.
post_info line 468
'##Get Status of this Topic
strSql = "SELECT T_STATUS, T_UREPLIES"
strSql = Strsql & " FROM " & strTablePrefix & "TOPICS "
strSql = strSql & " WHERE TOPIC_ID = " & Topic_ID
Should be?
'##Get Status of this Topic
strSql = "SELECT T_STATUS, T_UREPLIES"
strSql = Strsql & " FROM " & strActivePrefix & "TOPICS "
strSql = strSql & " WHERE TOPIC_ID = " & Topic_ID