From e9e1208751255999b58ca1772f0898746c2bba59 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Sun, 30 Mar 2025 07:11:36 +0000 Subject: [PATCH] Bug 39484: Fix external sounds in self checkout module To test: 1. Enable AudioAlerts 2. Set something up in the SCO to play a sound from an external source. ( I used #sco_main as my selector ) 3. Go to SCO and try to trigger the sound, nothing plays. 4. APPLY PATCH 5. Try steps 2 and 3 again, this time you should hear the sound from an external source. Signed-off-by: Andrew Signed-off-by: Brendan Lawlor --- koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt index 52530b7e18..f833ed210b 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt @@ -438,8 +438,8 @@ function playSound( sound ) { if (!(sound.indexOf("http://") === 0 || sound.indexOf("https://") === 0)) { sound = '[% interface | html %]' + '/bootstrap/sound/' + sound; - document.getElementById("audio-alert").innerHTML = ''; } + document.getElementById("audio-alert").innerHTML = ''; } [% END %] -- 2.39.5