@@ -, +, @@ the Save button 1. Navigate to the "opaccredits" syspref (or any other textarea, i.e., "Click to Edit", syspref) in the system preferences editor. 2. Change its contents, by either pasting or typing. The field may not be marked as modified, even after you click outside the box. 3. Apply the patch. 4. Reload the page and try again; either pasting or typing should mark the field as changed and allow you to save. --- koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js @@ -63,7 +63,7 @@ $( document ).ready( function () { } $( '.prefs-tab' ) - .find( 'input.preference, textarea.preference' ).on('change', function () { + .find( 'input.preference, textarea.preference' ).on('change keyup paste', function () { if ( this.defaultValue === undefined || this.value != this.defaultValue ) mark_modified.call( this ); } ).end() .find( 'select.preference' ).change( mark_modified ); --