boinc/html/user/prefs_edit_resource_action.php

25 lines
433 B
PHP
Raw Normal View History

<?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");
?>