Fix the MIME type bug that I introduced when making File assets work with

the exporter properly.
This commit is contained in:
Drake 2006-11-11 00:25:57 +00:00
parent e982302c2a
commit c14b75f606
4 changed files with 29 additions and 6 deletions

View file

@ -2133,5 +2133,20 @@ true.
sub isValidRssItem { 1 }
#-------------------------------------------------------------------
=head2 exportHtml_view ( )
View method for static export. This is like www_view, and defaults to
just calling www_view, but this needs to be overridden if www_view
depends on there being an actual HTTP response on the other end.
=cut
sub exportHtml_view {
my $self = shift;
$self->www_view(@_);
}
1;