Summary: | Can't use a hash as a reference at docs/CAS/CASProxy/examples/proxy_cas_data.pl line 60. | ||
---|---|---|---|
Product: | Koha | Reporter: | Olli-Antti Kivilahti <olli-antti.kivilahti> |
Component: | Authentication | Assignee: | Olli-Antti Kivilahti <olli-antti.kivilahti> |
Status: | ASSIGNED --- | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | dpavlin, jonathan.druart, severine.queune |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Bug Depends on: | 5630 | ||
Bug Blocks: | |||
Attachments: |
Bug 18237 - Can't use a hash as a reference at docs/CAS/CASProxy/examples/proxy_cas_data.pl line 60.
Bug 11674: DBRev 17.12.00.031 |
Description
Olli-Antti Kivilahti
2017-03-09 12:25:18 UTC
Created attachment 60944 [details] [review] Bug 18237 - Can't use a hash as a reference at docs/CAS/CASProxy/examples/proxy_cas_data.pl line 60. Fixes t/db_dependent/00-strict.t root@koha_ci_1:/home/koha/Koha# cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=16.04 DISTRIB_CODENAME=xenial DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS" root@koha_ci_1:/home/koha/Koha# perl -v This is perl 5, version 22, subversion 1 (v5.22.1) built for x86_64-linux-gnu-thread-multi 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')}}; Created attachment 74387 [details] [review] Bug 11674: DBRev 17.12.00.031 Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> (In reply to Séverine Queune from comment #4) > Created attachment 74387 [details] [review] [review] > Bug 11674: DBRev 17.12.00.031 > > Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> I'm soooo sorry !! I wrote 18237 instead of 18327 when I signed it.... I set it back to "ASSIGNED" |