Seite 2 von 2

Verfasst: 03.01.2006 16:47
von Fennias Maxim
in der posting.php sollte dieser Befehl ausgeführt werden.

#
#-----[ FIND ]---------------------------------------------
#
$topic_type = ( !empty($HTTP_POST_VARS['topictype']) ) ? intval($HTTP_POST_VARS['topictype']) : POST_NORMAL;

#
#-----[ AFTER, ADD ]---------------------------------------------
#
$topic_type = ( in_array($topic_type, array(POST_NORMAL, POST_STICKY, POST_ANNOUNCE)) ) ? $topic_type : POST_NORMAL;

allen anschein nach hast du es wieder ersetzt anstatt es danach einzufügen.

Was musst du also tun:

#
#-----[ FIND ]---------------------------------------------
#
# in der Zeile 79
$topic_type = ( in_array($topic_type, array(POST_NORMAL, POST_STICKY, POST_ANNOUNCE)) ) ? $topic_type : POST_NORMAL;

#
#-----[ BEFORE, ADD ]---------------------------------------------
#
$topic_type = ( !empty($HTTP_POST_VARS['topictype']) ) ? intval($HTTP_POST_VARS['topictype']) : POST_NORMAL;

Verfasst: 03.01.2006 17:27
von Germania001
Grüße.

Dank Dir.

Läuft alles wieder ast rein.

Bist ja ein richtiger Halbgott an der Tastatur! :grin:

Mercy nochmal.

MfG

Germania001