http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14858 Bug ID: 14858 Summary: misc/batchRebuildItemsTables.pl has hard coded record length limit of 99999 bytes. Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Command-line Utilities Assignee: gmcharlt@gmail.com Reporter: barton@bywatersolutions.com QA Contact: testopia@bugs.koha-community.org CC: robin@catalyst.net.nz At line 73 of misc/misc/batchRebuildItemsTables.pl, we're skipping records whose $reclen is greater than 99999 bytes. if ($reclen > 99999) { push @errors, "bad record length for biblionumber $biblionumber (length : $reclen) "; next; } The 99999 byte limit is only valid for GRS-1, which has been removed from koha, therefore this limit should be removed. -- You are receiving this mail because: You are watching all bug changes.