[Koha-bugs] [Bug 8628] Add digital signs to the OPAC

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Feb 3 16:14:35 CET 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8628

--- Comment #129 from Magnus Enger <magnus at 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.


More information about the Koha-bugs mailing list