@@ -, +, @@ when given an invalid bib number http://your_ktd:8081/cgi-bin/koha/cataloguing/editor.pl#catalog/55555 Koha should hang with a message "Loading, please wait". --- koha-tmpl/intranet-tmpl/lib/koha/cateditor/koha-backend.js | 2 ++ 1 file changed, 2 insertions(+) --- a/koha-tmpl/intranet-tmpl/lib/koha/cateditor/koha-backend.js +++ a/koha-tmpl/intranet-tmpl/lib/koha/cateditor/koha-backend.js @@ -134,6 +134,8 @@ define( [ '/cgi-bin/koha/svc/cataloguing/framework?frameworkcode=&callback=defin } ).fail( function( data ) { callback( { error: _('Could not fetch frameworkcode for record') } ); } ); + } ).fail( function( data ) { + callback( { error: data } ) } ); }, --