https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40817 --- Comment #20 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 193208 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=193208&action=edit Bug 40817: Fix C3 MRO compilation errors in child classes Explicitly load parent classes before inheritance declarations to resolve C3 method resolution order errors that occurred during QA syntax checking. Modern::Perl enables C3 MRO by default, and the base pragma needs the parent class to be fully loaded before establishing inheritance. Adding explicit 'use Parent::Class;' statements before 'use base qw(Parent::Class);' ensures proper C3 linearization during compile-time checks. This resolves QA script failures while maintaining all existing functionality. -- You are receiving this mail because: You are watching all bug changes.