@@ -, +, @@ --------- so use that as the patron code in your koha-conf.xml -- this is the hard part. Hopefully the above will give you enough. -- when you hover your mouse over the links for the backends, they will have ARRAY(...) instead of a meaningful name. This is what triggers the error (see comment #7). git checkout -b bug_20001 origin/master git bz apply 20001 reset_all -- when hovering your mouse over the links for the backends, they will have meaningful values now. --- Koha/Illrequest.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/Koha/Illrequest.pm +++ a/Koha/Illrequest.pm @@ -478,8 +478,8 @@ Return a list of available backends. sub available_backends { my ( $self ) = @_; - my @backends = $self->_config->available_backends; - return \@backends; + my $backends = $self->_config->available_backends; + return $backends; } =head3 available_actions --