From d03d0951380e00407c493852d0040555e0328ed9 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 19 Feb 2022 20:25:53 +0100 Subject: [PATCH] Bug 29965: (QA follow-up) Fix translation issue in moved JS code Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js b/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js index 931cecd1f3..57ba0405ea 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js +++ b/koha-tmpl/intranet-tmpl/prog/js/authorities-detail-modal.js @@ -6,7 +6,7 @@ $(document).ready(function(){ $.get("/cgi-bin/koha/authorities/detail.pl", { authid : authid }, function( data ){ var auth_detail = $(data).find("#authoritiestabs"); auth_detail.find("ul").remove(); - $("#authorityDetail .modal-title").html(_("Authority") + " " + authid ); + $("#authorityDetail .modal-title").html(__("Authority") + " " + authid ); $("#authorityDetail .modal-body").html( auth_detail ); }); -- 2.30.2