On Wed, Mar 16, 2011 at 1:55 PM, Peter Huerter <pete.huerter@gmail.com> wrote:
Following up,
In Koha 3.2-5 it appears that callnumber.pl does not work without a simple fix.
I had to add the following line at the top of the file to work around it.
use C4::Auth qw(get_template_and_user);
An error was reported in the koha-error_log indicating that get_template_and_user was not defined.
That's because callnumber.pl is written as a plugin and not to be executed directly. It is executed via a 'do' from within another script which has already loaded up the required modules. See http://tinyurl.com/4t7nsc5 However, the value of open source software is once again exemplified in the fact that you were able to modify it to work for your application. Kind Regards, Chris