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

(-)a/circ/request-article.pl (-1 / +2 lines)
Lines 22-27 use Modern::Perl; Link Here
22
use C4::Output;
22
use C4::Output;
23
use C4::Auth;
23
use C4::Auth;
24
use C4::Utils::DataTables::Members;
24
use C4::Utils::DataTables::Members;
25
use C4::Search;
25
use Koha::Biblios;
26
use Koha::Biblios;
26
use Koha::Patrons;
27
use Koha::Patrons;
27
use Koha::ArticleRequests;
28
use Koha::ArticleRequests;
Lines 109-114 if ( !$patron && $patron_cardnumber ) { Link Here
109
$template->param(
110
$template->param(
110
    biblio => $biblio,
111
    biblio => $biblio,
111
    patron => $patron,
112
    patron => $patron,
113
    C4::Search::enabled_staff_search_views,
112
);
114
);
113
115
114
output_html_with_http_headers $cgi, $cookie, $template->output;
116
output_html_with_http_headers $cgi, $cookie, $template->output;
115
- 

Return to bug 21291