https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37056

--- Comment #8 from Nick Clemens (kidclamp) <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to