Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 DEV-Group
 DEV Bug Reports (Closed)
 (v3.4.03) BUG+FIX: post_info.asp
 Forum Locked  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 20 September 2002 :  21:22:35  Show Profile
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  Show Profile
You are upping the post count of members when they make a post in a moderated forum before it gets approved?

Support Snitz Forums
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 20 September 2002 :  22:08:39  Show Profile
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"))
Go to Top of Page

David K
Junior Member

494 Posts

Posted - 04 November 2002 :  17:39:43  Show Profile  Send David K an AOL message  Send David K an ICQ Message  Send David K a Yahoo! Message
so this is not a bug?
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 04 November 2002 :  22:36:14  Show Profile
why would you think that this isn't a bug?
Go to Top of Page

David K
Junior Member

494 Posts

Posted - 05 November 2002 :  10:00:26  Show Profile  Send David K an AOL message  Send David K an ICQ Message  Send David K a Yahoo! Message
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
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 05 November 2002 :  10:55:28  Show Profile
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.
Go to Top of Page

David K
Junior Member

494 Posts

Posted - 05 November 2002 :  11:23:40  Show Profile  Send David K an AOL message  Send David K an ICQ Message  Send David K a Yahoo! Message
good point, thanks for the input
BTW, should i apply all bugfixes in this forum, or only the ones mentioned in the sticky topic?
Go to Top of Page

davemaxwell
Access 2000 Support Moderator

USA
3020 Posts

Posted - 05 November 2002 :  11:54:39  Show Profile  Visit davemaxwell's Homepage  Send davemaxwell an AOL message  Send davemaxwell an ICQ Message  Send davemaxwell a Yahoo! Message
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
Go to Top of Page

David K
Junior Member

494 Posts

Posted - 05 November 2002 :  12:52:10  Show Profile  Send David K an AOL message  Send David K an ICQ Message  Send David K a Yahoo! Message
there are 20 posts with 3.3.03 in the topic, and 10 diffrent bugs in thet topic, so what do I do?
Go to Top of Page

davemaxwell
Access 2000 Support Moderator

USA
3020 Posts

Posted - 05 November 2002 :  14:37:54  Show Profile  Visit davemaxwell's Homepage  Send davemaxwell an AOL message  Send davemaxwell an ICQ Message  Send davemaxwell a Yahoo! Message
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
Go to Top of Page

David K
Junior Member

494 Posts

Posted - 05 November 2002 :  18:52:41  Show Profile  Send David K an AOL message  Send David K an ICQ Message  Send David K a Yahoo! Message
that is, i've seen 20 posts about 3.4.03 not 3.3.xx
Go to Top of Page

davemaxwell
Access 2000 Support Moderator

USA
3020 Posts

Posted - 05 November 2002 :  23:19:08  Show Profile  Visit davemaxwell's Homepage  Send davemaxwell an AOL message  Send davemaxwell an ICQ Message  Send davemaxwell a Yahoo! Message
All the "official" bugs with fixes are in the sticky. Apply those to be caught up...

Dave Maxwell
Barbershop Harmony Freak
Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 13 February 2003 :  10:56:13  Show Profile
Fixed in v3.4.04

Support Snitz Forums
Go to Top of Page
  Previous Topic Topic Next Topic  
 Forum Locked  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.29 seconds. Powered By: Snitz Forums 2000 Version 3.4.07