Lines 24-33
Link Here
|
24 |
|
24 |
|
25 |
use Modern::Perl; |
25 |
use Modern::Perl; |
26 |
use CGI qw ( -utf8 ); |
26 |
use CGI qw ( -utf8 ); |
27 |
use C4::Auth; |
27 |
use C4::Auth qw(get_template_and_user); |
28 |
use C4::Koha; |
28 |
use C4::Koha; |
29 |
use C4::Context; |
29 |
use C4::Context; |
30 |
use C4::Output; |
30 |
use C4::Output qw(output_html_with_http_headers); |
31 |
use C4::Languages qw(getTranslatedLanguages); |
31 |
use C4::Languages qw(getTranslatedLanguages); |
32 |
use Koha::DateUtils; |
32 |
use Koha::DateUtils; |
33 |
use Koha::AdditionalContents; |
33 |
use Koha::AdditionalContents; |
Lines 226-230
$template->param(
Link Here
|
226 |
languages => \@languages, |
226 |
languages => \@languages, |
227 |
); |
227 |
); |
228 |
|
228 |
|
229 |
|
|
|
230 |
output_html_with_http_headers $cgi, $cookie, $template->output; |
229 |
output_html_with_http_headers $cgi, $cookie, $template->output; |
231 |
- |
|
|