https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32060
--- Comment #8 from Jonathan Druart <[email protected]> --- 1. Then I would C4::Biblio::GetFrameworkCode and cache there. 2. - my $tagslib = C4::Biblio::GetMarcStructure(1, $frameworkcode); + my $tagslib = C4::Biblio::GetMarcStructure( 1, $frameworkcode, { unsafe => 1 } ); Yes, definitely. 3. - my $value = $self->$column; + my $value = $self->_result()->get_column($column); Really faster? -- 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/
