id, $title, $content, $add_signature ); if (!$threadID) { error_page("Can't create thread (title may be missing)"); } $thread->id=$threadID; setThreadLastVisited($logged_in_user,$thread); header('Location: forum_thread.php?id=' . $threadID); } $category = getCategory($forum->category); if ($category->is_helpdesk) { page_head('Help Desk'); } else { page_head('Forum'); } show_forum_title($forum, NULL, $category->is_helpdesk); if ($category->is_helpdesk) { echo "

The Questions and problems area let you get help from other users. If you have a question or problem:

This will prevent questions from being asked repeatedly. "; } echo "
\n"; start_table(); if ($category->is_helpdesk) { row1("Submit a new question/problem"); } else { row1("Create a new thread"); } $x = "Title".html_info(); if ($category->is_helpdesk) { $x .="
Describe your question in a few words. A brief, clear summary will help others with the same question (or an answer) find it. "; } $y = ""; row2($x, $y); $x = "Message".html_info().post_warning(); if ($category->is_helpdesk) { $x .= " If you are having software problems, mention the version number of the software, your computer type and operating system. "; } $y = ""; if ($logged_in_user->no_signature_by_default==0) { $enable_signature="checked=\"true\""; } else { $enable_signature=""; } row2($x, $y); row2("", "Add my signature to this post"); row2("", ""); end_forum_table(); echo "
\n"; page_tail(); ?>