2002-05-29 23:25:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once("db.inc");
|
|
|
|
include_once("util.inc");
|
|
|
|
include_once("prefs.inc");
|
|
|
|
|
|
|
|
db_init();
|
|
|
|
|
2003-02-07 09:00:35 +00:00
|
|
|
$authenticator = init_session();
|
2002-12-04 19:14:00 +00:00
|
|
|
$user = get_user_from_auth($authenticator);
|
2002-05-29 23:25:21 +00:00
|
|
|
if ($user == NULL) {
|
|
|
|
print_login_form();
|
2002-11-12 17:01:16 +00:00
|
|
|
exit();
|
2002-05-29 23:25:21 +00:00
|
|
|
}
|
2003-02-07 09:00:35 +00:00
|
|
|
parse_str(getenv("QUERY_STRING"));
|
2002-11-12 17:01:16 +00:00
|
|
|
|
|
|
|
$prefs = prefs_parse($user->prefs);
|
|
|
|
prefs_global_parse_form($prefs);
|
|
|
|
global_prefs_update($user, $prefs);
|
2003-02-18 23:07:48 +00:00
|
|
|
Header("Location: prefs.php");
|
2002-05-29 23:25:21 +00:00
|
|
|
|
|
|
|
?>
|