From 9da2e6562bd79eedd2577f0016c1ef6113bddb64 Mon Sep 17 00:00:00 2001 From: Laura Escamilla Date: Tue, 6 Feb 2024 16:13:32 +0000 Subject: [PATCH] Bug 36004: Fixed typo in successfully To test: 1. Turn on the syspref 'OpacCatalogConcerns' 2. Go to view a record in the OPAC and click on "Report a concern" in the column located on the right-hand side. 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. Submit a new concern. Notice that the text now has "successfully" spelled correctly. 6. Sign off and have a great day! :D Signed-off-by: Owen Leonard Signed-off-by: Julian Maurice --- koha-tmpl/opac-tmpl/bootstrap/js/modals/catalog_concern.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/modals/catalog_concern.js b/koha-tmpl/opac-tmpl/bootstrap/js/modals/catalog_concern.js index 18e60156f4b..5e3a4d77b48 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/js/modals/catalog_concern.js +++ b/koha-tmpl/opac-tmpl/bootstrap/js/modals/catalog_concern.js @@ -52,7 +52,7 @@ $(document).ready(function() { $('#addConcernModal').modal('hide'); $('#concern_body').val(''); $('#concern_title').val(''); - $('h1:first').before('
' + __("Your concern was sucessfully submitted.") + '
'); + $('h1:first').before('
' + __("Your concern was successfully submitted.") + '
'); }, error: function(data) { $('#concern-submit-spinner').hide(); -- 2.30.2