$pageName = 'Bugs';
$focused = "none"; // Dock icon name to get a border
require "../parts/preamble.php"; // Load most of document
?>
function do_list ($title, $name, $list, $def)
{
$list = explode (',', $list);
$count = count ($list);
echo '
' . $title . ' ';
printf ("", $name);
for ($i = 0; $i < $count; $i++) {
printf ("%s ", $def == $list[$i] ? " selected" : "", $list[$i]);
}
echo " ";
}
function do_inputline ($title, $name, $len, $def)
{
echo '' . $title . ' ';
printf (' ', $name, $len, $def);
echo ' ';
}
function do_inputtext ($title, $name, $width, $height, $def)
{
echo '' . $title . ' ';
printf ('', $name, $width, $height, $def);
echo ' ';
}
function do_submit ()
{
echo '';
echo ' ';
echo ' ';
}
if ($os && $ver && $prog && $type && $desc && $details) {
$subject = $desc;
$text = 'OS: ' . $os . chr (10) .
'version: ' . $ver . chr (10) .
'program: ' . $prog . chr (10) .
'type: ' . $prog . chr (10) .
chr (10) .
$details;
echo 'Subject: ' . $subject . ' ';
echo '' . $text . '
';
//mail ('quakeforge-devel@lists.quakeforge.net', $subject, $text, "From: taniwha");
} else {
?>Doesn't work yet.
}
?>
require "../parts/postamble.php"; // Finish this sucker up
?>