[Koha-bugs] [Bug 35263] Cannot update patron categories

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Nov 7 10:33:48 CET 2023


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

Jonathan Druart <jonathan.druart+koha at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jonathan.druart+koha at gmail.
                   |                            |com

--- Comment #11 from Jonathan Druart <jonathan.druart+koha at gmail.com> ---
Will be better written this way IMO:

my $can_place_ill_in_opac = defined $input->param('can_place_ill_in_opac') ?
$input->param('can_place_ill_in_opac') : 1;

=>

my $can_place_ill_in_opac = $input->param('can_place_ill_in_opac') // 1;

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


More information about the Koha-bugs mailing list