Subject: | MARC::Field::delete_subfield() clears entire field if arguments are badly formatted |
$field->delete_subfield('t');
instead of
$field->delete_subfield(code => 't');
will clear the entire field (including indicators) silently, rather than
DWIM or giving an error message.