Lines 74-80
if ( $local_suggestions and DateTime::Duration->compare( ($now - $timestamp), DU
Link Here
|
74 |
delete $local_suggestions->{timestamp}; |
74 |
delete $local_suggestions->{timestamp}; |
75 |
delete $local_suggestions->{biblionumber}; |
75 |
delete $local_suggestions->{biblionumber}; |
76 |
foreach my $key ( sort keys %{ $local_suggestions }){ |
76 |
foreach my $key ( sort keys %{ $local_suggestions }){ |
77 |
push @biblios, Koha::Biblios->find( $local_suggestions->{ $key } ); |
77 |
my $biblio = Koha::Biblios->find( $local_suggestions->{ $key } ); |
|
|
78 |
push @biblios, $biblio->unblessed() if $biblio; |
78 |
} |
79 |
} |
79 |
} |
80 |
} |
80 |
|
81 |
|
81 |
- |
|
|