bugfix [ 956221 ] article template

This commit is contained in:
JT Smith 2004-05-25 18:54:11 +00:00
parent 2a45eee908
commit d941bbf4fb
2 changed files with 4 additions and 1 deletions

View file

@ -4,6 +4,9 @@
- Bugfix [ 955397 ] Make Page Printable Macro Fails
- Bugfix [ 959762 ] Mail Form Template problem (fix)
- Bugfix [ 952908 ] Manage database option is not available
- Bugfix [ 955501 ] Pagination link in SQL Report contains all
form-parameters
- Bugfix [ 956221 ] article template

View file

@ -118,7 +118,7 @@ sub www_view {
if ($query =~ /^select/i || $query =~ /^show/i || $query =~ /^describe/i) {
my $url = WebGUI::URL::page('&wid='.$_[0]->get("wobjectId").'&func=view');
foreach (keys %{$session{form}}) {
unless ($_ eq "pn" || $_ eq "wid" || $_ eq "func") {
unless ($_ eq "pn" || $_ eq "wid" || $_ eq "func" || $_ =~ /identifier/i || $_ =~ /password/i) {
$url = WebGUI::URL::append($url, WebGUI::URL::escape($_)
.'='.WebGUI::URL::escape($session{form}{$_}));
}