Seite 1 von 1

Thema sperren aber Umfrage aktiv

Verfasst: 26.10.2004 11:41
von Eclipse16V
Gibt es die Möglichkeit das man ein Thema sperren kann aber die Umfrage die in dem Theama ist aktiv bleibt? Wenn ich jetzt ein Thema sperre dann ist die Umfrage auch gesperrt.

Verfasst: 26.10.2004 12:38
von Leuchte
posting.php - Finde

Code: Alles auswählen

else if ( $mode != 'newtopic' && $post_info['topic_status'] == TOPIC_LOCKED && !$is_auth['auth_mod'])
Ersetze mit

Code: Alles auswählen

else if ( $mode != 'newtopic' && $post_info['topic_status'] == TOPIC_LOCKED && !$is_auth['auth_mod'] && $mode != 'vote')
viewtopic.php - Finde

Code: Alles auswählen

if ( $user_voted || $view_result || $poll_expired || !$is_auth['auth_vote'] || $forum_topic_data['topic_status'] == TOPIC_LOCKED )
Finde und lösche darin

Code: Alles auswählen

 || $forum_topic_data['topic_status'] == TOPIC_LOCKED

Verfasst: 26.10.2004 13:44
von Eclipse16V
Danke

:grin: