Lines 75-80
my $pending_article_requests = Koha::ArticleRequests->search_limited(
Link Here
|
75 |
} |
75 |
} |
76 |
)->count; |
76 |
)->count; |
77 |
|
77 |
|
|
|
78 |
use Koha::DateUtils qw( dt_from_string output_pref ); |
79 |
my $dt = dt_from_string; |
78 |
$template->param( |
80 |
$template->param( |
79 |
pendingcomments => $pendingcomments, |
81 |
pendingcomments => $pendingcomments, |
80 |
pendingtags => $pendingtags, |
82 |
pendingtags => $pendingtags, |
Lines 82-87
$template->param(
Link Here
|
82 |
pending_borrower_modifications => $pending_borrower_modifications, |
84 |
pending_borrower_modifications => $pending_borrower_modifications, |
83 |
pending_discharge_requests => $pending_discharge_requests, |
85 |
pending_discharge_requests => $pending_discharge_requests, |
84 |
pending_article_requests => $pending_article_requests, |
86 |
pending_article_requests => $pending_article_requests, |
|
|
87 |
dt => output_pref({dt => $dt, dateformat => 'rfc3339', }), |
85 |
); |
88 |
); |
86 |
|
89 |
|
87 |
output_html_with_http_headers $query, $cookie, $template->output; |
90 |
output_html_with_http_headers $query, $cookie, $template->output; |
88 |
- |
|
|