vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Advanced Warning System (AWS) (https://vborg.vbsupport.ru/forumdisplay.php?f=105)
-   -   Alert Thread messages are blank... (https://vborg.vbsupport.ru/showthread.php?t=80331)

Ski-Whiz 04-21-2005 11:04 PM

Alert Thread messages are blank...
 
I upgraded to 3.4.4.. Well for some reason the I'm getting the new thread for Alerts, but nothing is in this thread..

However, when I send a warning for the same thing, that thread will post the thread as normal.

So when sending alerts, the thread is blank, when sending warnings, the threads are posted as normal.

Anyone else getting Alert threads to work in 3.4.4? I haven't upgraded to 3.4.5,a s I didn't see this as a bug..

Maybe I'll update to 3.4.5 and just see if the alert thread works??

sv1cec 04-22-2005 04:55 AM

I am a bit confused by your terminology. What do you mean "the new thread for Alerts"? An alert does not create a thread in any Forum, even if you have selected that option in the Warning Options, only warnings do. Or are you refering to the PMs send to the alerted or warned member?

Ski-Whiz 04-22-2005 09:22 AM

Alerts are created threads on my site..hmm..

They are blank. The topics are there, but no body.. That's odd..
When I select the Alert "Yes", it creates a thread in my selected forum, like I said with no body.
I can PM you a test admin account to play with if you like.. It's wierd, if you said it won't create a thread.. :D I don't mind if it doesn't... I'm just seeing one, that's blank.. :D

sv1cec 04-22-2005 11:10 AM

Darn you are right!

Heheh, this program has more features than I know of!

In any case, if you want the Alerts to create a thread in a specific forum, edit your functions_warning and find:

PHP Code:

        if ($alert=='No')
        {    
            eval(
'$messageb .= "' fetch_template('warn_pm') . '";');
            
$title="You have been warned";
            
$messagecopy=$messageb;
        }
        else
        {
            eval(
'$messageb .= "' fetch_template('warn_pm_alert') . '";');
            
$title="You have been alerted";

        } 

Replace that with:

PHP Code:

        if ($alert=='No')
        {    
            eval(
'$messageb .= "' fetch_template('warn_pm') . '";');
            
$title="You have been warned";
        }
        else
        {
            eval(
'$messageb .= "' fetch_template('warn_pm_alert') . '";');
            
$title="You have been alerted";

        }
                
$messagecopy=$messageb

Also, find:

PHP Code:

if ($alert=='No')
        {
            eval(
'$messageb .= "' fetch_template('warn_em') . '";');
            eval(
'$messagecopy .= "' fetch_template('warn_pm') . '";');
            
$title="{$vboptions['messagetag']} - You have been warned";
        }
        else
        {
            eval(
'$messageb .= "' fetch_template('warn_em_alert') . '";');
            
$title="{$vboptions['messagetag']} - You have been alerted";
            
        } 

And replace that with:

PHP Code:

if ($alert=='No')
        {
            eval(
'$messageb .= "' fetch_template('warn_em') . '";');
            eval(
'$messagecopy .= "' fetch_template('warn_pm') . '";');
            
$title="{$vboptions['messagetag']} - You have been warned";
        }
        else
        {
            eval(
'$messageb .= "' fetch_template('warn_em_alert') . '";');
            eval(
'$messagecopy .= "' fetch_template('warn_pm_alert') . '";');
            
$title="{$vboptions['messagetag']} - You have been alerted";
            
        } 

If you do not want Alerts to be created as threads, then in functions_warning.php find:

PHP Code:

if ($vboptions['warn_savecopy']=='1' AND $vboptions['warn_savecopyforum']!=''

Replace that with:

PHP Code:

if ($vboptions['warn_savecopy']=='1' AND $vboptions['warn_savecopyforum']!='' AND $alert=='No'

Next version, I'll have an option for that.

Rgds

Ski-Whiz 04-22-2005 11:51 PM

Thanks.. I was hoping you'd find something.. :D

I didn't want you to think it was me.. :D I try my best to fix the problems myself, I just found it odd, and I rechecked everything!

Man, you are doing a GREAT job of staying on top of this hack!! Bravo!!

sv1cec 04-23-2005 05:15 AM

Thank you, doing my best.


All times are GMT. The time now is 05:31 AM.

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.01010 seconds
  • Memory Usage 1,747KB
  • 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
  • (6)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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