2003-02-07 09:00:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once("db.inc");
|
|
|
|
include_once("util.inc");
|
|
|
|
include_once("prefs.inc");
|
|
|
|
|
|
|
|
$authenticator = init_session();
|
|
|
|
db_init();
|
|
|
|
|
|
|
|
$user = get_user_from_auth($authenticator);
|
|
|
|
if ($user == NULL) {
|
|
|
|
print_login_form();
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2003-03-04 19:13:21 +00:00
|
|
|
$prefs = prefs_parse_global($user->global_prefs);
|
2003-02-07 09:00:35 +00:00
|
|
|
prefs_resource_parse_form($prefs);
|
|
|
|
project_prefs_update($user, $prefs);
|
2003-02-18 23:07:48 +00:00
|
|
|
|
|
|
|
Header("Location: account_setup_nonfirst_done.php");
|
2003-02-07 09:00:35 +00:00
|
|
|
|
|
|
|
?>
|