dum dum dum dum dum

This commit is contained in:
Doug Bell 2008-12-03 04:16:51 +00:00
parent 0bbae2fe41
commit 438058dc7d
2 changed files with 6 additions and 2 deletions

View file

@ -2135,7 +2135,8 @@ sub processTemplate {
=head2 processStyle ( html )
Returns some HTML wrappered in a style. Should be overridden by subclasses, because
this one actually doesn't do anything other than return the html back to you
this one actually doesn't do anything other than return the html back to you and
adds the Asset's extraHeadTags into the raw head tags.
=head3 html
@ -2145,6 +2146,7 @@ The content to wrap up.
sub processStyle {
my ($self, $output) = @_;
$self->session->style->setRawHeadTags($self->getExtraHeadTags);
return $output;
}