diff --git a/module/VuFind/src/VuFind/ILS/Driver/Horizon.php b/module/VuFind/src/VuFind/ILS/Driver/Horizon.php index d7a0ac78c40d6302a7894b955e8c17f78ba84f15..f034e5e0b83a9d0f1b3f739d1580ae4599db8f5f 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Horizon.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Horizon.php @@ -277,7 +277,6 @@ class Horizon extends AbstractBase $duedate = $row['DUEDATE']; $item_status = $row['STATUS_CODE']; //get the item status code - $statusValues = $this->parseStatus($item_status); if (isset($statusValues['duedate'])) { diff --git a/module/VuFind/src/VuFind/RecordDriver/EDS.php b/module/VuFind/src/VuFind/RecordDriver/EDS.php index 78c3e34627c919d891f03fc02924b4bf68aa7cb4..2c74e8f3e97a3e977bc07df9911caad52854cbc7 100644 --- a/module/VuFind/src/VuFind/RecordDriver/EDS.php +++ b/module/VuFind/src/VuFind/RecordDriver/EDS.php @@ -429,7 +429,6 @@ class EDS extends SolrDefault // Map xml tags to the HTML tags // This is just a small list, the total number of xml tags is far greater - // Any group can be added here, but we only use Au (Author) // Other groups, not present here, won't be transformed to HTML links $allowed_searchlink_groups = ['au','su']; diff --git a/module/VuFind/tests/unit-tests/src/VuFindTest/ILS/Driver/DAIATest.php b/module/VuFind/tests/unit-tests/src/VuFindTest/ILS/Driver/DAIATest.php index 326f97fa7cf9a5d655c64532657462c2c271c4cd..0b2d4c6c3f316c6b5d5cc801e87cd3e524482965 100644 --- a/module/VuFind/tests/unit-tests/src/VuFindTest/ILS/Driver/DAIATest.php +++ b/module/VuFind/tests/unit-tests/src/VuFindTest/ILS/Driver/DAIATest.php @@ -127,7 +127,6 @@ class DAIATest extends \VuFindTest\Unit\ILSDriverTestCase // exact result for using the DAIA.php with testfile daia.json - $this->assertEquals($result, $this->testResult); }