- fix: Bug in "Article with Files"

- fix: SQLReport pagination retains op= parameter
 - fix: Invalid MIME type set for images
This commit is contained in:
JT Smith 2006-11-15 22:30:50 +00:00
parent 24b0e8c8bd
commit bc4125204a
8 changed files with 31 additions and 21 deletions

View file

@ -213,6 +213,7 @@ sub _exportAsHtml {
return (1, sprintf($i18n->get('export information'), scalar(@{$assetIds}), ($self->session->datetime->time()-$startTime)));
}
#-------------------------------------------------------------------
=head2 exportAsHtml
Same as www_exportGenerate except without the output. Returns
@ -228,6 +229,21 @@ sub exportAsHtml {
#-------------------------------------------------------------------
=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(@_);
}
#-------------------------------------------------------------------
=head2 www_export
Displays the export page administrative interface