1 Jul
2024
1 Jul
'24
8:11 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37056 --- Comment #8 from Nick Clemens (kidclamp) <nick@bywatersolutions.com> --- It seems you can workaround by preventing the JS from firing at login: $(document).ready(function() { // Your report ID var reportId = '1'; if( $('body #main_auth').length > 0 ){ // Fetch the report $.get('/cgi-bin/koha/svc/report?id=' + reportId, function(data) { console.log('Kaboom'); }); } }); -- You are receiving this mail because: You are watching all bug changes.