From 0e0ab2ede9fb3148bc3b58181ad49279eb6bb2dd Mon Sep 17 00:00:00 2001 From: Josef Moravec <josef.moravec@gmail.com> Date: Tue, 23 Mar 2021 16:14:19 -0400 Subject: [PATCH] Fix incorrect property name. --- module/VuFind/src/VuFind/ILS/Driver/NewGenLib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/ILS/Driver/NewGenLib.php b/module/VuFind/src/VuFind/ILS/Driver/NewGenLib.php index 2c9780a6549..eabb065b0ab 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/NewGenLib.php +++ b/module/VuFind/src/VuFind/ILS/Driver/NewGenLib.php @@ -104,7 +104,7 @@ class NewGenLib extends AbstractBase "' and document_library_id='" . $holding[$i]['library_id'] . "' and status='A'"; try { - $sqlStmt2 = $this->_db->prepare($duedateql); + $sqlStmt2 = $this->db->prepare($duedateql); $sqlStmt2->execute(); } catch (PDOException $e1) { throw new ILSException($e1->getMessage()); -- GitLab