@@ -, +, @@ =?UTF-8?q?=C3=B6=C3=BC=20display=20properly=20after=20input?= - Enter "Buchrücken ist beschädigt", - Click "Submit changes" - Field shows: "Buchr�cken ist besch�digt". Same with éàè etc. - Same in message "...has been saved and sent to the library." --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -938,6 +938,7 @@ Using this account is not recommended because some parts of Koha will not functi var $self = $(this); var title = $(this).parent().siblings('.title').html(); var $noteinput = $(this).siblings('input[name="note"]').first(); + var $noteformessage = $noteinput.val(); var ajaxData = { 'action': 'issuenote', @@ -957,9 +958,8 @@ Using this account is not recommended because some parts of Koha will not functi $("#notesaved").removeClass("alert-error"); $("#notesaved").addClass("alert-info"); $noteinput.data('origvalue', data.note); - $noteinput.val(data.note); message = "

" + _("Your note about %s has been saved and sent to the library.").format(title) + "

"; - message += "

" + data.note + "

"; + message += "

" + $noteformessage + "

"; $self.hide(); } else if(data.status == 'removed') { $("#notesaved").removeClass("alert-error"); --