https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27944
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha@gmail. | |com --- Comment #8 from Jonathan Druart <[email protected]> --- (In reply to Marcel de Rooy from comment #4) > Please run qa tools. I see this failure: > FAIL koha-tmpl/intranet-tmpl/prog/en/modules/circ/request-article.tt > FAIL valid_template > Attempt to reload Koha/Template/Plugin/Biblio.pm aborted. > Compilation failed in require at > /usr/lib/x86_64-linux-gnu/perl5/5.24/Template/Plugins.pm line 206. > => Is this related to biblio-view-menu.inc ? The following change should fix that. diff --git a/Koha/ArticleRequest.pm b/Koha/ArticleRequest.pm index 3ea325d83dc..692099ca6bd 100644 --- a/Koha/ArticleRequest.pm +++ b/Koha/ArticleRequest.pm @@ -27,6 +27,7 @@ use Koha::Biblios; use Koha::Items; use Koha::Libraries; use Koha::DateUtils qw(dt_from_string); +use Koha::ArticleRequest::Status; use base qw(Koha::Object); -- 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/
