Bug 23916: (follow-up) Don't anonymise issuer and don't update action_logs on upgrade
[koha-ffzg.git] / Koha / Z3950Responder.pm
index 93d0ac2..4d81598 100644 (file)
@@ -1,23 +1,21 @@
-#!/usr/bin/perl
-
 package Koha::Z3950Responder;
 
 # Copyright ByWater Solutions 2016
 #
 # This file is part of Koha.
 #
-# Koha is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 3 of the License, or (at your option) any later
-# version.
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
 #
-# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along
-# with Koha; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 use Modern::Perl;
 
@@ -99,8 +97,11 @@ sub new {
         unshift @{ $self->{yaz_options} }, '-v', 'none,fatal';
     }
 
-    # Set main config for SRU support
-    unshift @{ $self->{yaz_options} }, '-f', $self->{config_dir} . 'config.xml' if $self->{config_dir};
+    # Set main config for SRU support and working directory
+    if ( $self->{config_dir} ) {
+        unshift @{ $self->{yaz_options} }, '-f', $self->{config_dir} . 'config.xml';
+        unshift @{ $self->{yaz_options} }, '-w', $self->{config_dir};
+    }
 
     # Set num to prefetch if not passed
     $self->{num_to_prefetch} //= 20;