fixed some xhhtml stuff

increased performance on burst protection
This commit is contained in:
JT Smith 2006-04-07 19:35:31 +00:00
parent ddeee5fbe8
commit adea847875
8 changed files with 34 additions and 30 deletions

View file

@ -1039,9 +1039,9 @@ sub www_view {
$self->prepareView;
my $style = $self->getParent->processStyle("~~~");
my ($head, $foot) = split("~~~",$style);
$self->session->output->print($head);
$self->session->output->print($head,1);
$self->session->output->print($self->view);
$self->session->output->print($foot);
$self->session->output->print($foot,1);
return "chunked";
}