forward porting fix for non-unique separator strings, ~~~, #8543
This commit is contained in:
parent
9eff3a4b77
commit
13eb87ffe5
13 changed files with 54 additions and 27 deletions
|
|
@ -439,8 +439,8 @@ sub www_view {
|
|||
return $output;
|
||||
} else {
|
||||
$self->session->http->sendHeader;
|
||||
my $style = $self->processStyle("~~~");
|
||||
my ($head, $foot) = split("~~~",$style);
|
||||
my $style = $self->processStyle($self->getSeparator);
|
||||
my ($head, $foot) = split($self->getSeparator,$style);
|
||||
$self->session->output->print($head);
|
||||
$self->session->output->print($output, 1); # Do not process macros
|
||||
$self->session->output->print($foot);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue