mirror of https://github.com/BOINC/boinc.git
25 lines
433 B
PHP
25 lines
433 B
PHP
|
<?php
|
||
|
|
||
|
include_once("db.inc");
|
||
|
include_once("util.inc");
|
||
|
include_once("prefs.inc");
|
||
|
|
||
|
parse_str(getenv("QUERY_STRING"));
|
||
|
|
||
|
$authenticator = init_session();
|
||
|
db_init();
|
||
|
|
||
|
$user = get_user_from_auth($authenticator);
|
||
|
if ($user == NULL) {
|
||
|
print_login_form();
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
no_cache();
|
||
|
$prefs = prefs_parse($user->project_prefs);
|
||
|
prefs_resource_parse_form($prefs);
|
||
|
project_prefs_update($user, $prefs);
|
||
|
Header("Location: $next_url");
|
||
|
|
||
|
?>
|