|
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 591-594
$template->param( found1 => scalar $query->param('found1') );
Link Here
|
| 591 |
|
592 |
|
| 592 |
$template->param( biblio => $biblio ); |
593 |
$template->param( biblio => $biblio ); |
| 593 |
|
594 |
|
|
|
595 |
if ( $query->param('audit') ) { |
| 596 |
my @audit_errors = Koha::Database::DataInconsistency->for_biblio($biblio); |
| 597 |
$template->param( |
| 598 |
auditing => 1, |
| 599 |
audit_errors => \@audit_errors, |
| 600 |
); |
| 601 |
} |
| 602 |
|
| 594 |
output_html_with_http_headers $query, $cookie, $template->output; |
603 |
output_html_with_http_headers $query, $cookie, $template->output; |