mirror of https://github.com/BOINC/boinc.git
31 lines
650 B
PHP
31 lines
650 B
PHP
|
<?php
|
||
|
|
||
|
include_once("db.inc");
|
||
|
include_once("util.inc");
|
||
|
include_once("prefs.inc");
|
||
|
|
||
|
db_init();
|
||
|
|
||
|
$authenticator = init_session();
|
||
|
$user = get_user_from_auth($authenticator);
|
||
|
if ($user == NULL) {
|
||
|
print_login_form();
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
$subset = $_GET["subset"];
|
||
|
$venue = $_GET["venue"];
|
||
|
|
||
|
if ($subset == "global") {
|
||
|
$main_prefs = prefs_parse_global($user->global_prefs);
|
||
|
$main_prefs->$venue = null;
|
||
|
global_prefs_update($user, $main_prefs);
|
||
|
} else {
|
||
|
$main_prefs = prefs_parse_project($user->project_prefs);
|
||
|
$main_prefs->$venue = null;
|
||
|
project_prefs_update($user, $main_prefs);
|
||
|
}
|
||
|
Header("Location: prefs.php?subset=$subset");
|
||
|
|
||
|
?>
|