mirror of https://github.com/BOINC/boinc.git
39 lines
671 B
PHP
39 lines
671 B
PHP
|
<?php
|
||
|
|
||
|
include_once("db.inc");
|
||
|
include_once("util.inc");
|
||
|
|
||
|
$authenticator = init_session();
|
||
|
db_init();
|
||
|
|
||
|
$user = get_user_from_auth($authenticator);
|
||
|
if ($user == NULL) {
|
||
|
print_login_form();
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
parse_str(getenv("QUERY_STRING"));
|
||
|
|
||
|
$f = fopen("bug_reports.xml", "a");
|
||
|
$x = sprintf("<bug
|
||
|
<userid>$user->id</userid>
|
||
|
<platform>%s</platform>
|
||
|
<problem>
|
||
|
%s
|
||
|
</problem>
|
||
|
</bug>
|
||
|
",
|
||
|
$HTTP_POST_VARS["platform"],
|
||
|
$HTTP_POST_VARS["problem"]
|
||
|
);
|
||
|
fputs($f, $x);
|
||
|
fclose($f);
|
||
|
|
||
|
page_head("Problem report recorded", $user);
|
||
|
echo "
|
||
|
Your problem report has been recorded.
|
||
|
We apologize for any inconvience you may have experienced.
|
||
|
";
|
||
|
page_tail();
|
||
|
?>
|