Lines 49-54
use Koha::Biblio::ItemGroup::Items;
Link Here
|
49 |
use Koha::Biblio::ItemGroups; |
49 |
use Koha::Biblio::ItemGroups; |
50 |
use Koha::CoverImages; |
50 |
use Koha::CoverImages; |
51 |
use Koha::DateUtils; |
51 |
use Koha::DateUtils; |
|
|
52 |
use Koha::Database::DataInconsistency; |
52 |
use Koha::ILL::Requests; |
53 |
use Koha::ILL::Requests; |
53 |
use Koha::Items; |
54 |
use Koha::Items; |
54 |
use Koha::ItemTypes; |
55 |
use Koha::ItemTypes; |
Lines 538-541
$template->param( found1 => scalar $query->param('found1') );
Link Here
|
538 |
|
539 |
|
539 |
$template->param( biblio => $biblio ); |
540 |
$template->param( biblio => $biblio ); |
540 |
|
541 |
|
|
|
542 |
if ( $query->param('audit') ) { |
543 |
my @audit_errors = Koha::Database::DataInconsistency->for_biblio($biblio); |
544 |
$template->param( |
545 |
auditing => 1, |
546 |
audit_errors => \@audit_errors, |
547 |
); |
548 |
} |
549 |
|
541 |
output_html_with_http_headers $query, $cookie, $template->output; |
550 |
output_html_with_http_headers $query, $cookie, $template->output; |