Bug 20639: (follow-up) Fix population of backends
[koha.git] / Koha / Illrequest.pm
index 98e4d70..94e24de 100644 (file)
@@ -578,8 +578,8 @@ Return a list of available backends.
 =cut
 
 sub available_backends {
-    my ( $self ) = @_;
-    my $backends = $self->_config->available_backends;
+    my ( $self, $reduced ) = @_;
+    my $backends = $self->_config->available_backends($reduced);
     return $backends;
 }