[Koha-bugs] [Bug 18237] Can't use a hash as a reference at docs/CAS/CASProxy/examples/ proxy_cas_data.pl line 60.

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Sep 26 20:28:04 CEST 2017


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18237

Jonathan Druart <jonathan.druart at bugs.koha-community.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jonathan.druart at bugs.koha-c
                   |                            |ommunity.org
             Status|Needs Signoff               |Failed QA

--- Comment #3 from Jonathan Druart <jonathan.druart at bugs.koha-community.org> ---
Looks like the fix is more

-      my $pgtId = %$hashref->{$cgi->param('PGTIOU')};
+      my $pgtId = $hashref->{$cgi->param('PGTIOU')};

instead of
-      my $pgtId = %$hashref->{$cgi->param('PGTIOU')};
+      my $pgtId = %{$hashref->{$cgi->param('PGTIOU')}};

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list