<%doc> user_pref.html Saves the specified attribute in the user object. This is used by asynchronous javascript calls to set user attributes without reloading the page. <%flags> inherit => undef <%perl> do "jsrsServer.pm"; jsrsDispatch("set_value"); sub set_value { my $attr = shift; my $value = shift; my $user = $ui->get_current_user($r); $user->setAttribute($r, $attr, $value); }