From 5285601492b2b415a4575aa96ef0e959b1528b58 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Thu, 25 Feb 2016 09:53:11 -0500
Subject: [PATCH] Fixed case of method call.

---
 module/VuFind/src/VuFind/ILS/Driver/Voyager.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/Voyager.php b/module/VuFind/src/VuFind/ILS/Driver/Voyager.php
index c2529019b0f..c733a5ad59c 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/Voyager.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/Voyager.php
@@ -1887,7 +1887,7 @@ class Voyager extends AbstractBase
         $sql = $this->buildSqlFromArray($sqlArray);
         try {
             $sqlStmt = $this->db->prepare($sql['string']);
-            $this->debugsql(__FUNCTION__, $sql['string'], $sql['bind']);
+            $this->debugSQL(__FUNCTION__, $sql['string'], $sql['bind']);
             $sqlStmt->execute($sql['bind']);
             while ($sqlRow = $sqlStmt->fetch(PDO::FETCH_ASSOC)) {
                 $list[] = $this->processMyStorageRetrievalRequestsData($sqlRow);
-- 
GitLab