From 13afa9a266474c3b7d19f65aead12fc77de773d8 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 7 Aug 2015 00:20:09 +0200 Subject: [PATCH] Bug 14660: Fix stocknumberAV.pl catalguing plugin The cataloguing plugin stocknumberAV.pl is broken and no longer generating numbers - this patch fixes it. To test: - Link a subfield to the plugin - usually it's 952$i or the UNIMARC equivalent in your MARC frameworks - Set up a new authorised value INVENTORY, the code is an uppercase prefix - "B" - The Descriptions is your starting number - 1 - The OPAC description remains empty - Catalalog an item - Enter B as stocknumber and activate the plugin by clicking on ... at the end of the field - The number will not get added - Firebug shows an error: Undefined subroutine CGI::output_html_with_http_headers - Apply patch - Verify numbers are now generated and no errors are shown --- cataloguing/value_builder/stocknumberAV.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/cataloguing/value_builder/stocknumberAV.pl b/cataloguing/value_builder/stocknumberAV.pl index 8eea7e1..8860060 100755 --- a/cataloguing/value_builder/stocknumberAV.pl +++ b/cataloguing/value_builder/stocknumberAV.pl @@ -21,6 +21,7 @@ use Modern::Perl; use C4::Auth; use CGI qw ( -utf8 ); use C4::Context; +use C4::Output; =head1 DESCRIPTION -- 1.9.1