From df11954f54c8ad27bdc39067393b4237d0ae69c7 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 3 May 2021 18:08:49 +0000 Subject: [PATCH] Bug 28179: (follow-up) Remove console.log This patch removes a "console.log" from detail.tt and replaces it with similar output to the user. It will probably never be triggered, but better to handle it gracefully than have a hidden log. Signed-off-by: Owen Leonard --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index f48febbe01..bde528c30d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -1074,7 +1074,7 @@ Note that permanent location is a code, and location may be an authval. } else if ( div.attr("class") == "cover-image local-coverimg" ) { lightbox_descriptions.push(_("Local cover image (edit)").format($(img).data('link'))); } else { - console.log("Source of the image cannot be guessed.") + lightbox_descriptions.push(_("Cover image source unknown")); } } } -- 2.11.0