Author |
Topic |
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 20 September 2002 : 21:22:35
|
find the following (starting around line #1711):
case "Reply", "ReplyQuote", "TopicQuote"
' DEM --> If moderated post, the counts should not be updated until after approval
' Combined the Reply, ReplyQuote and TopicQuote because the basic code was the same.
if Moderation = "Yes" then
Response.Write("New Reply Posted! It will appear once approved by a moderator")
else
Response.Write("New Reply Posted!")
DoPCount
if ForumCountMPosts <> 0 then
DoUCount Request.Form("UserName")
end if
DoULastPost Request.Form("UserName")
end if
case "Topic"
' DEM --> If moderated post, the counts should not be updated until after approval
if Moderation = "Yes" then
Response.Write("New Topic Posted! It will appear once approved by a moderator")
else
Response.Write("New Topic Posted!")
DoTCount
DoPCount
if ForumCountMPosts <> 0 then
DoUCount Request.Form("UserName")
end if
DoULastPost Request.Form("UserName")
end if
change it to look like this: (affected lines are highlighted in green)
case "Reply", "ReplyQuote", "TopicQuote"
' DEM --> If moderated post, the counts should not be updated until after approval
' Combined the Reply, ReplyQuote and TopicQuote because the basic code was the same.
if Moderation = "Yes" then
Response.Write("New Reply Posted! It will appear once approved by a moderator")
else
Response.Write("New Reply Posted!")
DoPCount
if ForumCountMPosts <> 0 then
DoUCount Request.Form("UserName")
end if
end if
DoULastPost Request.Form("UserName")
case "Topic"
' DEM --> If moderated post, the counts should not be updated until after approval
if Moderation = "Yes" then
Response.Write("New Topic Posted! It will appear once approved by a moderator")
else
Response.Write("New Topic Posted!")
DoTCount
DoPCount
if ForumCountMPosts <> 0 then
DoUCount Request.Form("UserName")
end if
end if
DoULastPost Request.Form("UserName")
|
|
Davio
Development Team Member
Jamaica
12217 Posts |
Posted - 20 September 2002 : 21:48:04
|
You are upping the post count of members when they make a post in a moderated forum before it gets approved? |
Support Snitz Forums
|
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 20 September 2002 : 22:08:39
|
No, just the M_LASTPOSTDATE, the post count is still dependent on whether moderation is on or not. (it's handled by the DoUCount Request.Form("UserName")) |
|
|
David K
Junior Member
494 Posts |
Posted - 04 November 2002 : 17:39:43
|
so this is not a bug? |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 04 November 2002 : 22:36:14
|
why would you think that this isn't a bug? |
|
|
David K
Junior Member
494 Posts |
Posted - 05 November 2002 : 10:00:26
|
why should the last post info be changed before the post is approved? it shouldn't be counted as a post at all if it is moderated, until it's verified by a modorator things don't count as posted untill they are approved |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 05 November 2002 : 10:55:28
|
Because if the last post info is not being updated, then a user can bypass the flood control in moderated forums. They could flood that forum with unmoderated posts. Just because a Moderator doesn't approve a post, doesn't mean it wasn't made. |
|
|
David K
Junior Member
494 Posts |
Posted - 05 November 2002 : 11:23:40
|
good point, thanks for the input BTW, should i apply all bugfixes in this forum, or only the ones mentioned in the sticky topic? |
|
|
davemaxwell
Access 2000 Support Moderator
USA
3020 Posts |
Posted - 05 November 2002 : 11:54:39
|
Depends on the version. If you have 3.4.03, then all you need apply are those listed by Richard in the sticky topic. |
Dave Maxwell Barbershop Harmony Freak |
|
|
David K
Junior Member
494 Posts |
Posted - 05 November 2002 : 12:52:10
|
there are 20 posts with 3.3.03 in the topic, and 10 diffrent bugs in thet topic, so what do I do? |
|
|
davemaxwell
Access 2000 Support Moderator
USA
3020 Posts |
Posted - 05 November 2002 : 14:37:54
|
So you have 3.3.03 or 3.4.03? If you have 3.3.03, you should apply all fixes for 3.3.xx (and consider upgrading to 3.4.03, which contains all those fixes).
If you have 3.4.03 (the current version), then apply all fixes from the sticky. |
Dave Maxwell Barbershop Harmony Freak |
|
|
David K
Junior Member
494 Posts |
Posted - 05 November 2002 : 18:52:41
|
that is, i've seen 20 posts about 3.4.03 not 3.3.xx |
|
|
davemaxwell
Access 2000 Support Moderator
USA
3020 Posts |
Posted - 05 November 2002 : 23:19:08
|
All the "official" bugs with fixes are in the sticky. Apply those to be caught up... |
Dave Maxwell Barbershop Harmony Freak |
|
|
Davio
Development Team Member
Jamaica
12217 Posts |
|
|
Topic |
|