From 11bf79c72b0088daddf5a2e46f2dc73f72a1f90b Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 7 Feb 2018 16:35:01 -0500
Subject: [PATCH] Don't try to attach ILS if service is undefined. - Fixes
 broken test.

---
 .../src/VuFind/RecordDriver/Factory.php       | 24 +++++++++++--------
 1 file changed, 14 insertions(+), 10 deletions(-)

diff --git a/module/VuFind/src/VuFind/RecordDriver/Factory.php b/module/VuFind/src/VuFind/RecordDriver/Factory.php
index 91b502405c5..8c9f5be7d0b 100644
--- a/module/VuFind/src/VuFind/RecordDriver/Factory.php
+++ b/module/VuFind/src/VuFind/RecordDriver/Factory.php
@@ -166,11 +166,13 @@ class Factory
             null,
             $sm->get('VuFind\Config\PluginManager')->get('searches')
         );
-        $driver->attachILS(
-            $sm->get('VuFind\ILS\Connection'),
-            $sm->get('VuFind\ILS\Logic\Holds'),
-            $sm->get('VuFind\ILS\Logic\TitleHolds')
-        );
+        if ($sm->has('VuFind\ILS\Connection')) {
+            $driver->attachILS(
+                $sm->get('VuFind\ILS\Connection'),
+                $sm->get('VuFind\ILS\Logic\Holds'),
+                $sm->get('VuFind\ILS\Logic\TitleHolds')
+            );
+        }
         $driver->attachSearchService($sm->get('VuFindSearch\Service'));
         return $driver;
     }
@@ -189,11 +191,13 @@ class Factory
             null,
             $sm->get('VuFind\Config\PluginManager')->get('searches')
         );
-        $driver->attachILS(
-            $sm->get('VuFind\ILS\Connection'),
-            $sm->get('VuFind\ILS\Logic\Holds'),
-            $sm->get('VuFind\ILS\Logic\TitleHolds')
-        );
+        if ($sm->has('VuFind\ILS\Connection')) {
+            $driver->attachILS(
+                $sm->get('VuFind\ILS\Connection'),
+                $sm->get('VuFind\ILS\Logic\Holds'),
+                $sm->get('VuFind\ILS\Logic\TitleHolds')
+            );
+        }
         $driver->attachSearchService($sm->get('VuFindSearch\Service'));
         return $driver;
     }
-- 
GitLab