From bfea61c7dcba0863c9dd2da889774ab592674fb1 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Wed, 10 Aug 2016 09:48:46 -0400
Subject: [PATCH] Fixed wrong function name.

---
 module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php b/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php
index 456e09072a1..683c70cdba2 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php
@@ -43,7 +43,7 @@ use Zend\Cache\Storage\StorageInterface,
 abstract class AbstractBase implements DriverInterface
 {
     use KeyGeneratorTrait;
-    
+
     /**
      * Cache for storing ILS data temporarily (e.g. patron blocks)
      *
@@ -157,6 +157,6 @@ abstract class AbstractBase implements DriverInterface
         if (null === $this->cache) {
             return;
         }
-        $this->cache->removeItem($this->formatCacheKey($key));
+        $this->cache->removeItem($this->getCacheKey($key));
     }
 }
-- 
GitLab