[Bug 8628] Add digital signs to the OPAC
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8628 --- Comment #129 from Magnus Enger <magnus@libriotech.no> --- This made the sign display in the main table: diff --git a/tools/signs.pl b/tools/signs.pl index e243b59b97..5b317925d0 100755 --- a/tools/signs.pl +++ b/tools/signs.pl @@ -302,12 +302,12 @@ if ( $op eq 'add_stream' ) { } else { - my @streams = Koha::SignStreams->search(); - my @signs = Koha::Signs->search(); + my $streams = Koha::SignStreams->search(); + my $signs = Koha::Signs->search(); $template->param( - streams => \@streams, - signs => \@signs, + streams => $streams, + signs => $signs, -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org