diff --git a/cataloguing/additem.pl b/cataloguing/additem.pl index 5e68cb7ac7..941cff06a6 100755 --- a/cataloguing/additem.pl +++ b/cataloguing/additem.pl @@ -159,8 +159,8 @@ sub generate_subfield_form { my $attributes_no_value_textarea = qq(id="$subfield_data{id}" name="field_value" class="input_marceditor" rows="5" cols="64" ); # Getting list of subfields to keep when limited edition is enabled - my $subfieldsToAllowForLimitedEdition = C4::Context->preference('SubfieldsToAllowForLimitedEdition'); - my @subfieldsToAllow = split(/ /, $subfieldsToAllowForLimitedEdition); + my $subfieldsToAllowForRestrictedEdition = C4::Context->preference('SubfieldsToAllowForRestrictedEdition'); + my @subfieldsToAllow = split(/ /, $subfieldsToAllowForRestrictedEdition); # If we're on limited edition, and our field is not in the list of subfields to allow, # then it is read-only diff --git a/tools/batchMod.pl b/tools/batchMod.pl index d0648e4cc8..4410a20570 100755 --- a/tools/batchMod.pl +++ b/tools/batchMod.pl @@ -300,7 +300,7 @@ unshift (@$branches, $nochange_branch); my $pref_itemcallnumber = C4::Context->preference('itemcallnumber'); # Getting list of subfields to keep when limited batchmod edit is enabled -my $subfieldsToAllowForBatchmod = C4::Context->preference('SubfieldsToAllowForLimitedBatchmod'); +my $subfieldsToAllowForBatchmod = C4::Context->preference('SubfieldsToAllowForRestrictedBatchmod'); my @subfieldsToAllow = split(/ /, $subfieldsToAllowForBatchmod); foreach my $tag (sort keys %{$tagslib}) {