fixed user profile caching and retrieval issue.

This commit is contained in:
Matthew Wilson 2005-10-14 19:31:35 +00:00
parent 671bcb3c1b
commit 5fb251d01f

View file

@ -215,6 +215,7 @@ sub www_editProfileSave {
foreach $fieldName (keys %{$profile}) {
$u->profileField($fieldName,WebGUI::HTML::filter(${$profile}{$fieldName},"javascript"));
}
WebGUI::Session::refreshUserInfo($session{user}{userId});
return WebGUI::Operation::Auth::www_auth();
}