From 67a3a32ad7c0876a9470b76da914adeb6909df74 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 Signed-off-by: Katrin Fischer --- 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 fad01885b0..53d14fc59f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -1622,7 +1622,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