mirror of https://github.com/BOINC/boinc.git
28 lines
551 B
PHP
28 lines
551 B
PHP
<?php
|
|
|
|
include_once("db.inc");
|
|
include_once("util.inc");
|
|
include_once("login.inc");
|
|
include_once("prefs.inc");
|
|
|
|
db_init();
|
|
|
|
$user = get_user_from_cookie();
|
|
if ($user == NULL) {
|
|
print_login_form();
|
|
} else {
|
|
$prefs = prefs_parse($user->prefs);
|
|
prefs_project_parse_form($project);
|
|
|
|
$i = project_index($prefs, $project->master_url);
|
|
if ($i >= 0) {
|
|
echo "Duplicate project URL\n";
|
|
} else {
|
|
array_push($prefs->projects, $project);
|
|
prefs_update($user, $prefs);
|
|
print_prefs_display($prefs);
|
|
}
|
|
}
|
|
|
|
?>
|