static html exports work
This commit is contained in:
parent
db17ed0789
commit
683943c058
1 changed files with 3 additions and 2 deletions
|
|
@ -89,8 +89,9 @@ sub print {
|
|||
my $content = shift;
|
||||
my $skipMacros = shift;
|
||||
WebGUI::Macro::process($self->session, \$content) unless $skipMacros;
|
||||
if (exists $self->{_handle}) {
|
||||
print $self->{_handle};
|
||||
my $handle = $self->{_handle};
|
||||
if (defined $handle) {
|
||||
print $handle $content;
|
||||
} else {
|
||||
print $content;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue