Fix a dashboard bug where scripts and css needed by user profile fields were not

sent via an AJAX method in the shortcut.
This commit is contained in:
Colin Kuskie 2009-02-04 21:58:34 +00:00
parent 62a14a2dcc
commit 2c6717d508

View file

@ -804,8 +804,9 @@ sub www_getUserPrefsForm {
}
$f->submit({extras=>'className="nothing"'});
$f->raw('</table>');
my $tags = join "", values %{ $self->session->style->{_javascript} };
my $tags = $self->session->style->generateAdditionalHeadTags();
$output .= $tags.$f->print;
return $output;
}