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']==1 AND $level < $vboptions['warn_pmcutoff'])
Replace that with:
PHP Code:
if($vboptions['warn_send_pm_warning']==1 AND $level < $vboptions['warn_pmcutoff'] AND $vboptions['warn_pmcutoff']>0)
Also in the same file find:
PHP Code:
if($vboptions['warn_send_em_warning']==1 OR ($level >= $vboptions['warn_pmcutoff']}
Replace that with:
PHP Code:
if($vboptions['warn_send_em_warning']==1 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