mirror of https://github.com/BOINC/boinc.git
18 lines
308 B
PHP
18 lines
308 B
PHP
<?php
|
|
|
|
include_once("db.inc");
|
|
include_once("util.inc");
|
|
include_once("prefs.inc");
|
|
|
|
db_init();
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
$prefs = prefs_parse_global($user->global_prefs);
|
|
prefs_resource_parse_form($prefs);
|
|
project_prefs_update($user, $prefs);
|
|
|
|
Header("Location: account_setup_nonfirst_done.php");
|
|
|
|
?>
|