@@ -, +, @@ + koha_news => @all_koha_news, + @all_koha_news = &GetNewsToDisplay($news_lang,$homebranch); --- opac/opac-main.pl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) --- a/opac/opac-main.pl +++ a/opac/opac-main.pl @@ -61,17 +61,17 @@ elsif (C4::Context->userenv and defined $input->param('branch') and length $inpu } my $news_id = $input->param('news_id'); -my @all_koha_news; +my $all_koha_news; if (defined $news_id){ - @all_koha_news = Koha::News->search({ idnew => $news_id, lang => { '!=', 'koha' } }); # get news that is not staff-only news - if( @all_koha_news ) { # we only expect one btw - $template->param( news_item => $all_koha_news[0] ); + $all_koha_news = Koha::News->search({ idnew => $news_id, lang => { '!=', 'koha' } }); # get news that is not staff-only news + if( $all_koha_news->count ) { # we only expect one btw + $template->param( news_item => $all_koha_news->next ); } else { $template->param( single_news_error => 1 ); } } else { - @all_koha_news = &GetNewsToDisplay( $template->lang, $homebranch); + $all_koha_news = &GetNewsToDisplay( $template->lang, $homebranch); } # For dashboard @@ -104,7 +104,7 @@ if ( $patron ) { } $template->param( - koha_news => @all_koha_news, + koha_news => $all_koha_news, branchcode => $homebranch, daily_quote => Koha::Quotes->get_daily_quote(), ); --