https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8628
--- Comment #129 from Magnus Enger <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
