Browse Source

Bug 20906: Prevent test failures due to stricter perl

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
18.11.x
Martin Renvoize 5 years ago
committed by Nick Clemens
parent
commit
ea39ac2b18
  1. 2
      docs/CAS/CASProxy/examples/proxy_cas_data.pl

2
docs/CAS/CASProxy/examples/proxy_cas_data.pl

@ -56,7 +56,7 @@ if ($cgi->param('PGTIOU')) {
# The callback page stored it in the application vars (in our case a storable object in a file)
open FILE, "casSession.tmp" or die "Unable to open file";
my $hashref = fd_retrieve(\*FILE);
my $pgtId = %$hashref->{$cgi->param('PGTIOU')};
my $pgtId = %{$hashref->{$cgi->param('PGTIOU')}};
close FILE;
# Now that we have a PgtId, we can ask the cas server for a proxy ticket...

Loading…
Cancel
Save