fix: HttpProxy no longer processes macros in proxied content
This commit is contained in:
parent
ea75fd538f
commit
7ebea75e33
2 changed files with 17 additions and 15 deletions
|
|
@ -29,6 +29,8 @@
|
||||||
http://www.plainblack.com/bugs/tracker/too-many-directories-in-rss-cache
|
http://www.plainblack.com/bugs/tracker/too-many-directories-in-rss-cache
|
||||||
- fix: Help link broken for navigation template (perlDreamer Consulting, LLC)
|
- fix: Help link broken for navigation template (perlDreamer Consulting, LLC)
|
||||||
http://www.plainblack.com/bugs/tracker/help-link-broken-for-navigation-template
|
http://www.plainblack.com/bugs/tracker/help-link-broken-for-navigation-template
|
||||||
|
- fix: HttpProxy no longer processes macros in proxied content
|
||||||
|
http://www.plainblack.com/bugs/tracker/weird-characters-in-webgui.log-caused-by-http-proxy
|
||||||
|
|
||||||
7.3.15
|
7.3.15
|
||||||
- Added more documentation to WebGUI.pm
|
- Added more documentation to WebGUI.pm
|
||||||
|
|
|
||||||
|
|
@ -429,9 +429,9 @@ sub www_view {
|
||||||
$self->session->http->sendHeader;
|
$self->session->http->sendHeader;
|
||||||
my $style = $self->processStyle("~~~");
|
my $style = $self->processStyle("~~~");
|
||||||
my ($head, $foot) = split("~~~",$style);
|
my ($head, $foot) = split("~~~",$style);
|
||||||
$self->session->output->print($head, 1);
|
$self->session->output->print($head);
|
||||||
$self->session->output->print($output);
|
$self->session->output->print($output, 1); # Do not process macros
|
||||||
$self->session->output->print($foot, 1);
|
$self->session->output->print($foot);
|
||||||
return "chunked";
|
return "chunked";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue