vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Advanced Warning System (AWS) (https://vborg.vbsupport.ru/forumdisplay.php?f=105)
-   -   Private Messaging Cut-off bug (https://vborg.vbsupport.ru/showthread.php?t=80610)

Tom1234 04-26-2005 06:51 PM

Private Messaging Cut-off bug
 
Even though I have "Private Messaging Cut-off Limit" set to 0, I am seeing this statement in warning PMs:

"Please note that your Private Messaging system in our Forums has been deactivated, due to your Warning Level."

sv1cec 04-26-2005 07:16 PM

Quote:

Originally Posted by Tom1234
Even though I have "Private Messaging Cut-off Limit" set to 0, I am seeing this statement in warning PMs:

"Please note that your Private Messaging system in our Forums has been deactivated, due to your Warning Level."

Yeap, in your functions_warning.php find:

PHP Code:

if($vboptions['warn_send_pm_warning']==AND $level $vboptions['warn_pmcutoff']) 

Replace that with:

PHP Code:

if($vboptions['warn_send_pm_warning']==AND $level $vboptions['warn_pmcutoff'] AND $vboptions['warn_pmcutoff']>0

Also in the same file find:

PHP Code:

if($vboptions['warn_send_em_warning']==OR ($level >= $vboptions['warn_pmcutoff']} 

Replace that with:

PHP Code:

if($vboptions['warn_send_em_warning']==OR ($level >= $vboptions['warn_pmcutoff'] AND $vboptions['warn_pmcutoff']>0)) 

Didn't try these, but they should work. Somehow I didn't take into consideration, that you could set that to zero, stupid me.

Rgds

Tom1234 04-26-2005 08:29 PM

There is a comment in the form that implies you should set it to zero to de-activate it, so I didn't think that would be rare:

"If you set this number to anything but 0,..."

Should I be concerned along the same lines about the avatar and signature cut-off limit? I have them set to zero also.

sv1cec 04-26-2005 08:34 PM

LoL, not you, I was concerned, that I haven't done something stupid in the other places as well. You were right, to set it to zero, it's just that when I made the code, which adds that remark at the end of the PM or email, I didn't bother checking for zero value, I just checked if the warnings lever was higher than the cut-off limit.

No the rest of the code is correct, I checked!!

Rgds

kmike 04-28-2005 10:50 AM

This has caused the absence of PMs about warning in 3.4.7 when PM cutoff is zero.
When I change this line:
Code:

        if($vboptions['warn_send_pm_warning']==1 AND $level < $vboptions['warn_pmcutoff'] AND $vboptions['warn_pmcutoff']>0)
to the v3.4.6's:
Code:

        if($vboptions['warn_send_pm_warning']==1)
in includes/functions_warning.php, all works as expected.

sv1cec 04-28-2005 12:31 PM

Yes, but you are not covering the case, when a user is receiving a warning while being above the pm cutoff limit. He can't see the warning PM in this case, that's why in the laterst versions, whoever is above the cutoff limit, gets an e-mail, instead of a PM.

kmike 04-28-2005 01:13 PM

But new code simply doesn't send any PMs when "PM cutoff" is zero and user already has some warnings, because $level is always greater than $vboptions['warn_pmcutoff'] in this case.

sv1cec 04-28-2005 08:25 PM

You are right, the conditional should be changed to :

PHP Code:

    if (($vboptions['warn_send_pm_warning']==AND $vboptions['warn_pmcutoff']==0) OR (($vboptions['warn_send_pm_warning']==AND $vboptions['warn_pmcutoff']!=AND $level $vboptions['warn_pmcutoff'])) 

I'll change it in the next release, asap.

Rgds and tnx

Tom1234 04-28-2005 10:00 PM

Is this fixed in 3.4.8 or the next release after that?

sv1cec 04-29-2005 02:48 PM

No, got it fixed in 3.4.8.

Rgds and sorry for the inconvenience.


All times are GMT. The time now is 04:14 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02206 seconds
  • Memory Usage 1,745KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (5)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete