[ 1274414 ] extraHeadTags entirely unused

This commit is contained in:
Matthew Wilson 2005-08-27 03:18:08 +00:00
parent d1f1538b67
commit 7255a9e6a3
5 changed files with 33 additions and 1 deletions

View file

@ -53,7 +53,7 @@ These subroutines are available from this package:
=head2 generateAdditionalHeadTags ( )
Creates tags that were set using setLink, setMeta, setScript, and setRawHeadTags.
Creates tags that were set using setLink, setMeta, setScript, extraHeadTags, and setRawHeadTags.
=cut
@ -84,6 +84,9 @@ sub generateAdditionalHeadTags {
}
$tags .= ' />'."\n";
}
# append extraHeadTags
$tags .= $session{asset}->getExtraHeadTags."\n";
delete $session{page}{head};
return $tags;
}