bin erst ziemlich am Anfang und woltle heute den Kalender (mod-topic_calendar-101) in mein Forum einbinden.
Leider erhalte ich dann folgende Fehlermeldung:
der Code in diesen Zeilen sieht so aus:Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in D:\Programme\xampp\htdocs\FORUM-OE\phpBB2\posting.php on line 1032
kenn mich aber leider nicht (noch nicht ... hoffentlich) so gut aus als dass ich da einen Fehler finden würde.$topic_type_toggle = '';
if ( $mode == 'newtopic' || ( $mode == 'editpost' && $post_data['first_post'] ) )
{
$template->assign_block_vars('switch_type_toggle', array());
if( $is_auth['auth_sticky'] )
{
$topic_type_toggle .= '<input type="radio" name="topictype" value="' . POST_STICKY . '"';
if ( $post_data['topic_type'] == POST_STICKY || $topic_type == POST_STICKY )
{
$topic_type_toggle .= 'checked="checked"';
}
$topic_type_toggle .= ' /> ' . $lang['Post_Sticky'] . ' ';
}
if( $is_auth['auth_announce'] )
{
$topic_type_toggle .= '<input type="radio" name="topictype" value="' . POST_ANNOUNCE . '"';
if ( $post_data['topic_type'] == POST_ANNOUNCE || $topic_type == POST_ANNOUNCE )
{
$topic_type_toggle .= 'checked="checked"';
}
$topic_type_toggle .= ' /> ' . $lang['Post_Announcement'] . ' ';
}
if ( $topic_type_toggle != '' )
{
$topic_type_toggle = $lang['Post_topic_as'] . ': <input type="radio" name="topictype" value="' . POST_NORMAL .'"' . ( ( $post_data['topic_type'] == POST_NORMAL || $topic_type == POST_NORMAL ) ? 'checked="checked"' : '' ) . ' /> ' . $lang['Post_Normal'] . ' ' . $topic_type_toggle;
}
}
Könntet Ihr mir dabei bitte helfen?!
ach ja, das ganze passiert/steht in der posting.php!
Besten Dank!!
lg
Styles