Verfasst: 02.01.2004 13:46
Vielen Dank, dein Code funktioniert in meinem Testforum bereits super. Wenn meine Teamkollegen mir nun das OK geben, werde ich das ganze mal so in unserem Forum einbauen.
Code: Alles auswählen
$message = ( !empty($HTTP_POST_VARS['message']) ) ? $HTTP_POST_VARS['message'] : '';Code: Alles auswählen
$agb = ( !empty($HTTP_POST_VARS['agb_agree']) ) ? $HTTP_POST_VARS['agb_agree'] : ''; Code: Alles auswählen
prepare_post([...] $subject, $message, $poll_title,[...]);Code: Alles auswählen
prepare_post([...] $subject, $message, $agb, $poll_title,[...]);Code: Alles auswählen
function prepare_post([...] &$subject, &$message, &$poll_title[...])Code: Alles auswählen
function prepare_post([...] &$subject, &$message, &$agb, &$poll_title,[...])Code: Alles auswählen
// Check agb
if( empty($agb) )
{
$error_msg = sprintf($lang['AGB_agree_error'], '<a class="cattitle" href="'. append_sid("http://www.tvmatrix.net/forum.php") .'">', '</a>');
} Code: Alles auswählen
// Check subject
if (!empty($subject))
{
$subject = htmlspecialchars(trim($subject));
}
else if ($mode == 'newtopic' || ($mode == 'editpost' && $post_data['first_post']))
{
$error_msg .= (!empty($error_msg)) ? '<br />' . $lang['Empty_subject'] : $lang['Empty_subject'];
}