When I go into my inbox and click on the button to "Post Mass PM", I get the little yellow "! Error on Page" sign (java error) when I get into the groupmsg.php screen.
Here's what my error says when I click on more info:
Line: 183
Char: 2
Error: 'document.post.helpbox' is null or not an object
Code: 0
URL: http://www.covenantofdeath.org/groupmsg.php
When I type my message, whether I hit "Preview" or "Submit", nothing happens. Any idea what might be causing this problem?
Here's lines 157 - 184 (line 183 starts with $smilies_on):
//
// Toggles
//
if ( !$board_config['allow_html'] )
{
$html_on = 0;
}
else
{
$html_on = ( $submit || $refresh ) ? ( ( !empty($HTTP_POST_VARS['disable_html']) ) ? 0 : TRUE ) : $userdata['user_allowhtml'];
}
if ( !$board_config['allow_bbcode'] )
{
$bbcode_on = 0;
}
else
{
$bbcode_on = ( $submit || $refresh ) ? ( ( !empty($HTTP_POST_VARS['disable_bbcode']) ) ? 0 : TRUE ) : $userdata['user_allowbbcode'];
}
if ( !$board_config['allow_smilies'] )
{
$smilies_on = 0;
}
else
{
$smilies_on = ( $submit || $refresh ) ? ( ( !empty($HTTP_POST_VARS['disable_smilies']) ) ? 0 : TRUE ) : $userdata['user_allowsmile'];
}
Any ideas oh wise ones?



