fixed: Cross site scripting issue on operation pages
This commit is contained in:
parent
a877a505c4
commit
d37ded3ddc
2 changed files with 3 additions and 2 deletions
|
|
@ -20,6 +20,7 @@
|
|||
- fixed: testEnvironment.pl can't find WebGUI modules after installing a prerequisite
|
||||
- fixed: Combo box does not show possible values in Thingy (SDH Consulting
|
||||
Group)
|
||||
- fixed: Cross site scripting issue on operation pages
|
||||
|
||||
7.6.0
|
||||
- added: users may now customize the post received page for the CS
|
||||
|
|
|
|||
|
|
@ -437,8 +437,8 @@ sub page {
|
|||
if ($useFullUrl) {
|
||||
$url = $self->getSiteURL();
|
||||
}
|
||||
my $path = $self->session->asset ? $self->session->asset->get("url") : $self->getRequestedUrl;
|
||||
$url .= $self->gateway($path, $pairs, $skipPreventProxyCache);
|
||||
my $path = $self->session->asset ? $self->session->asset->get("url") : $self->escape($self->getRequestedUrl);
|
||||
$url .= $self->gateway($path, $pairs, $skipPreventProxyCache);
|
||||
return $url;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue