ich bin gerade dabei den Topic Calendar einzubauen und da bin ich doch direkt auf das erste problem gestossen!
Man soll in der posting.php folgendes finden:
Code: Alles auswählen
#
#-----[ FIND ]------------------------------------------------
#
case 'poll_delete':
if ( empty($post_id) )
{
message_die(GENERAL_MESSAGE, $lang['No_post_id']);
}
#
#-----[ FIND ]------------------------------------------------
#
# this is a partial search : the full line is longer
#
$select_sql = ( !$submit ) ? ", t.topic_title
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
//-- mod : calendar --------------------------------------------------------------------------------
// here we added
// , t.topic_calendar_time, t.topic_calendar_duration
//-- modify
#
#-----[ IN-LINE FIND ]----------------------------------------
#
, t.topic_title
#
#-----[ IN-LINE AFTER, ADD ]----------------------------------
#
, t.topic_calendar_time, t.topic_calendar_durationDas hier findert er noch:
Aber das gibt es dann nicht mehr:case 'poll_delete':
if ( empty($post_id) )
{
message_die(GENERAL_MESSAGE, $lang['No_post_id']);
}
Code: Alles auswählen
#-----[ FIND ]------------------------------------------------
#
# this is a partial search : the full line is longer
#
$select_sql = ( !$submit ) ? ", t.topic_title
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
//-- mod : calendar --------------------------------------------------------------------------------
// here we added
// , t.topic_calendar_time, t.topic_calendar_duration
//-- modify
#
#-----[ IN-LINE FIND ]----------------------------------------
#
, t.topic_title
#
#-----[ IN-LINE AFTER, ADD ]----------------------------------
#
, t.topic_calendar_time, t.topic_calendar_durationWeiss einer Rat?