2003-02-07 09:00:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once("db.inc");
|
|
|
|
include_once("util.inc");
|
|
|
|
include_once("prefs.inc");
|
|
|
|
|
|
|
|
db_init();
|
|
|
|
|
2003-03-19 21:01:32 +00:00
|
|
|
$user = get_logged_in_user();
|
2003-02-07 09:00:35 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
?>
|