X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=opac%2Fopac-main.pl;h=7c6ee363f6e029366855520939cb125f7647b0ab;hb=6310c992bf23d164f013ead7c0b2182226279454;hp=0d5bb9e1cff652297f76e519d7ac4583a1d2c117;hpb=108e901043f0766f8c103f3826b5af1cdb6daaa4;p=koha_fer diff --git a/opac/opac-main.pl b/opac/opac-main.pl index 0d5bb9e1cf..7c6ee363f6 100755 --- a/opac/opac-main.pl +++ b/opac/opac-main.pl @@ -46,7 +46,7 @@ $template->param( # display news # use cookie setting for language, bug default to syspref if it's not set -my ($theme, $news_lang) = C4::Templates::themelanguage(C4::Context->config('opachtdocs'),'opac-main.tt','opac',$input); +my ($theme, $news_lang, $availablethemes) = C4::Templates::themelanguage(C4::Context->config('opachtdocs'),'opac-main.tt','opac',$input); my $all_koha_news = &GetNewsToDisplay($news_lang); my $koha_news_count = scalar @$all_koha_news; @@ -65,4 +65,8 @@ if (C4::Context->preference('GoogleIndicTransliteration')) { $template->param('GoogleIndicTransliteration' => 1); } +if (C4::Context->preference('OPACNumbersPreferPhrase')) { + $template->param('numbersphr' => 1); +} + output_html_with_http_headers $input, $cookie, $template->output;