diff --git a/de_105/config/vufind/FincLibero.ini b/de_105/config/vufind/FincLibero.ini
index 023f762a1d5a123059766322c4de612765d4cb1b..e35b02b22e7b7a7fccd1dfb51915c0de5129c5ca 100644
--- a/de_105/config/vufind/FincLibero.ini
+++ b/de_105/config/vufind/FincLibero.ini
@@ -74,4 +74,4 @@ extraHoldFields = pickUpLocation
 ; Interlibrary loans setting
 [ILLRequests]
 ; Filter settings for diplaying ILL request at separately views
-filterReserved = "ILL:.*"
+itemPattern = "/^ILL:.*$/"
diff --git a/module/de_105/src/de_105/ILS/Driver/FincLibero.php b/module/de_105/src/de_105/ILS/Driver/FincLibero.php
index e3eb81c8dad884c2e0037634374d30b571d80fb9..ec7c5a4438c219895ee4eebfc285c649515896b5 100644
--- a/module/de_105/src/de_105/ILS/Driver/FincLibero.php
+++ b/module/de_105/src/de_105/ILS/Driver/FincLibero.php
@@ -43,14 +43,6 @@ namespace de_105\ILS\Driver;
  */
 class FincLibero extends \finc\ILS\Driver\FincLibero
 {
-    /**
-     * Limitations of ILL requests to filter holds
-     *
-     * @var string
-     * @access protected
-     */
-    protected $illRequestsFilterReserved;
-
     /**
      * Initialize the driver.
      *
@@ -121,31 +113,6 @@ class FincLibero extends \finc\ILS\Driver\FincLibero
         return [];
     }
 
-    /**
-     * Customized getMyILLRequests-method to return items with properties:
-     *      - document.item = URI dürfte nicht zum UBL/eigenen Namespace gehören
-     * copied from de_zi4/FincLibero
-     *
-     * @param array $patron Array returned from patronLogin()
-     * @todo refactor, check #11718 and #17230
-     *
-     * @return array
-     */
-    public function getMyILLRequests($patron)
-    {
-        // filters for getMyILLRequests are:
-        // document.item = URI must not part of own UBL specific namespace
-        $filter = ['regex'=>
-            [
-                //'item' => "/^(?:(?!".$this->getDaiaIdPrefixNamespace().")).*$/",
-                'item' => "/^".$this->illRequestsFilterReserved."$/"
-            ]
-        ];
-        // get items-docs for given filters
-        $items = $this->paiaGetItems($patron, $filter);
-        return $this->mapPaiaItems($items, 'myHoldsMapping');
-    }
-
     /**
      * Returns an array with status information for provided item.
      *