@@ -, +, @@ SubfieldsToUseWhenPrefill is empty --- Koha/UI/Form/Builder/Item.pm | 2 ++ cataloguing/additem.pl | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/Koha/UI/Form/Builder/Item.pm +++ a/Koha/UI/Form/Builder/Item.pm @@ -428,6 +428,8 @@ Flag to restrict the edition if the user does not have necessary permissions. List of subfields to prefill (value of syspref SubfieldsToUseWhenPrefill) +If empty all subfields will be prefilled. For none, you can pass an array with a single false value. + =item subfields_to_allow List of subfields to allow (value of syspref SubfieldsToAllowForRestrictedBatchmod or SubfieldsToAllowForRestrictedEditing) --- a/cataloguing/additem.pl +++ a/cataloguing/additem.pl @@ -567,8 +567,6 @@ my $branchcode = $input->param('branch') || C4::Context->userenv->{branch}; my @subfields_to_prefill; if ( $nextop eq 'additem' && $op ne 'dupeitem' && $prefillitem ) { @subfields_to_prefill = split(' ', C4::Context->preference('SubfieldsToUseWhenPrefill')); - # Setting to 1 element if SubfieldsToUseWhenPrefill is empty to prevent all the subfields to be prefilled - @subfields_to_prefill = ("") unless @subfields_to_prefill; } # Getting list of subfields to keep when restricted editing is enabled --