From a0f46054435abb87ad97ebdbb13065b96063ef65 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 24 Jun 2022 13:55:54 +0000 Subject: [PATCH] Bug 28854: (follow-up) Fix typo in templates and test plan * aready > already * 61 > 62 --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 +- t/db_dependent/Circulation.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 5c857ff745..8a4d62494d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -1618,7 +1618,7 @@ Note that permanent location is a code, and location may be an authval. if ( data.status === 409 ) { var response = data.responseJSON; if ( response.key === "PRIMARY" ) { - $('#addResult').replaceWith('
'+_("Warning: Item '%s' aready attached").format(barcode)+'
'); + $('#addResult').replaceWith('
'+_("Warning: Item '%s' already attached").format(barcode)+'
'); } else { $('#addResult').replaceWith('
'+_("Failure: Item '%s' belongs to another bundle").format(barcode)+'
'); } diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t index 232757e532..620cdbfa3a 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -18,7 +18,7 @@ use Modern::Perl; use utf8; -use Test::More tests => 61; +use Test::More tests => 62; use Test::Exception; use Test::MockModule; use Test::Deep qw( cmp_deeply ); -- 2.30.2