Bedankomat Einbau
Verfasst: 03.02.2006 13:07
ersetze mit:#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
if ( !isset($topic_id) && !isset($post_id) )
{
message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
}
#
## Ab 2.0.18 heißt die Zeile:
#
if (!$topic_id && !$post_id)
{
message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
}
#
finde:#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
if (!$topic_id && !$post_id)
{
message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
}
#
ersetze mit:#-----[ FIND ]------------------------------------------
#
$select_sql = ( !$submit ) ? ", t.topic_title, p.enable_bbcode, p.enable_html, p.enable_smilies, p.enable_sig, p.post_username, p.post_time, pt.post_subject
#
## ab 2.0.18 folgendes suchen:
#
$select_sql = (!$submit) ? ', t.topic_title,
#
Ohne Gewähr#-----[ FIND ]------------------------------------------
#
#
$select_sql = (!$submit) ? ', t.topic_title,
#