When editing a biblio via the basic editor, one can accomplish edits that should be prevented by framework configuration. To recreate: - have a record in the Default framework that already has a 100$a value - Confirm your framework defines the 100$a as non-repeatable - edit the record --- don't change the existing 100$a --- edit the subfield tag on a different 100 subfield, set it to $a, enter a value for the field - save your record - you get no error, your record now contains 2 100$a tags Further: - enable RequireChoosingExistingAuthority - confirm you cannot edit an existing 100$a without using the authority picker - take some other 100 subfield, edit its tag to be $a, put whatever you want in that field and save - Koha saves your non-authority author without issue It's worth noting I tried to save a 100$s, which is not defined in my framework. That data was not saved and I received no error message about it. I've confirmed this behavior in Main, 24.11, and 23.05. 24.11 and later versions have made it more obvious that one can edit these subfield tags, but the issue I've described here existed in 23.05.
My knee-jerk reaction was to make those readonly to avoid bad data entry. I also styled away the border and the background so they just look like inconspicuous labels again. Sharing the jQuery in case its helpful while a better solution is found: //Make subfields readonly and unstylish in basic editor $('#cat_addbiblio .subfieldcode input.flat').css('border', '0').css('background', 'none').attr('readonly', true);
Well, being able to save a record with duplicate fields/subfields that the framework says should not be repeatable has existed a lot longer than that, since it has existed for imported records for as long as frameworks have existed. Until the advanced editor had to implement checking at save-time (since duplicating a subfield there is just a matter of typing), the only real meaning of the Repeatable checkbox was "should it have an icon to duplicate it?" I wouldn't object if someone wanted to write the same sort of save-time checking for the basic editor, though my experience with bogus imported records in the advanced editor makes me think there would be a fair amount of shock and pain for people who import records without carefully examining them as a result. Silently deleting things that aren't in your framework is a "feature" (though one you ordinarily wouldn't notice, since they'll be deleted from imported records before you ever look at them, and you won't create them yourself). But getting around RequireChoosingExistingAuthority by changing an uncontrolled subfield to a controlled one, that's cunning!