From 0fcf48c55f858d19f1b78337b4b83f61831564fb Mon Sep 17 00:00:00 2001 From: Laura Escamilla Date: Tue, 6 Feb 2024 16:28:41 +0000 Subject: [PATCH] Bug 36005: Fixed typo in "Your concern was successfully submitted." text To test: 1. Turn on the syspref 'CatalogConcerns' 2. Go to view a record in the staff intranet and click on "New catalog concern" which is located in the "+New" dropdown. 3. Fill out the title on the form and leave everything else the same. Click on submit and notice that the message on the screen says "Your concern was sucessfully submitted." 4. Apply the patch. 5. Refresh the page and submit a new concern. Notice that the message now has "successfully" spelled correctly. 6. Sign off and have a wonderful day! :D Signed-off-by: Brendan Lawlor Signed-off-by: Julian Maurice Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js b/koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js index 3c48f67afb..10c0b3b2e9 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js +++ b/koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js @@ -35,7 +35,7 @@ $(document).ready(function() { $('#addConcernModal').modal('hide'); $('#concern_body').val(''); $('#concern_title').val(''); - $('#toolbar').before('
' + __("Your concern was sucessfully submitted.") + '
'); + $('#toolbar').before('
' + __("Your concern was successfully submitted.") + '
'); if ($.fn.dataTable.isDataTable("#table_concerns")) { $("#table_concerns").DataTable().ajax.reload(); } -- 2.39.5