https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29957
--- Comment #65 from Marcel de Rooy <[email protected]> --- The last patch deals with this funny code part in check_api_auth: my $cookie = $query->cookie( -name => 'CGISESSID', -value => $session->id, -HttpOnly => 1, -secure => ( C4::Context->https_enabled() ? 1 : 0 ), ); return ( $return, undef, $session ); This is useless code. In this statement we can simply return the created $cookie instead. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
