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

(-)a/misc/maintenance/search_for_data_inconsistencies.pl (-2 / +6 lines)
Lines 196-202 use C4::Biblio; Link Here
196
}
196
}
197
197
198
{
198
{
199
    my $biblios = Koha::Biblios->search({ -or => { title => undef, title => '' }});
199
    my $biblios = Koha::Biblios->search({
200
        -or => [
201
            title => '',
202
            title => undef,
203
        ]
204
    });
200
    if ( $biblios->count ) {
205
    if ( $biblios->count ) {
201
        my ( $title_tag, $title_subtag ) = C4::Biblio::GetMarcFromKohaField( 'biblio.title' );
206
        my ( $title_tag, $title_subtag ) = C4::Biblio::GetMarcFromKohaField( 'biblio.title' );
202
        my $title_field = $title_tag // '';
207
        my $title_field = $title_tag // '';
203
- 

Return to bug 26407