View | Details | Raw Unified | Return to bug 33270
Collapse All | Expand All

(-)a/Koha/Biblio/Metadata.pm (-3 / +2 lines)
Lines 149-154 Will return undef if the record cannot be built Link Here
149
sub record_strip_nonxml {
149
sub record_strip_nonxml {
150
150
151
    my ( $self, $params ) = @_;
151
    my ( $self, $params ) = @_;
152
    $params //= {};
152
153
153
    my $record;
154
    my $record;
154
    my $marcxml_error;
155
    my $marcxml_error;
Lines 166-173 sub record_strip_nonxml { Link Here
166
        return;
167
        return;
167
    }
168
    }
168
169
169
    $params->{record} = $record;
170
    return $self->record( { %$params, record => $record } );
170
    return $self->record($params);
171
}
171
}
172
172
173
=head2 Internal methods
173
=head2 Internal methods
174
- 

Return to bug 33270