From ec80c41d15c591d358546786f7baa7af41f680e9 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 16 Jan 2018 11:47:34 -0500 Subject: [PATCH] Avoid array-to-string conversion error. --- module/VuFind/src/VuFind/ILS/Driver/KohaILSDI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/ILS/Driver/KohaILSDI.php b/module/VuFind/src/VuFind/ILS/Driver/KohaILSDI.php index 1a907fb3e27..a65ceed3d4d 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/KohaILSDI.php +++ b/module/VuFind/src/VuFind/ILS/Driver/KohaILSDI.php @@ -651,7 +651,7 @@ class KohaILSDI extends \VuFind\ILS\Driver\AbstractBase implements ]; } - $this->debug("patron: " . $patron); + $this->debug("patron: " . print_r($patron, true)); $this->debug("patron_id: " . $patron_id); $this->debug("request_location: " . $request_location); $this->debug("item_id: " . $item_id); -- GitLab