From a06b22a45edef56a10ccc5b327d1897b0a5f15af Mon Sep 17 00:00:00 2001
From: Ere Maijala <ere.maijala@helsinki.fi>
Date: Thu, 13 Nov 2014 12:31:51 -0500
Subject: [PATCH] Removed meaningless second parameter.

---
 module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php
index 6e85c1b264f..d8f677619a9 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php
@@ -1126,9 +1126,7 @@ class MultiBackend extends AbstractBase
             }
         }
 
-        $driver = $this->getDriver(
-            $source, empty($id) ? null : $this->getLocalId($id)
-        );
+        $driver = $this->getDriver($source);
 
         // If we have resolved the needed driver, just getConfig and return.
         if ($driver && $this->methodSupported($driver, 'getConfig')) {
-- 
GitLab