From 1684b848a1da7882533b982efb21c0a0a563d666 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Thu, 19 Oct 2017 14:29:12 -0400
Subject: [PATCH] Fixed weird array formatting.

---
 module/VuFind/src/VuFind/ILS/Driver/LBS4.php | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/LBS4.php b/module/VuFind/src/VuFind/ILS/Driver/LBS4.php
index fa2dee07f5e..371764c2cc1 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/LBS4.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/LBS4.php
@@ -287,15 +287,15 @@ class LBS4 extends DAIA implements TranslatorAwareInterface
             $sqlStmt = sybase_query($sql);
             while ($row = sybase_fetch_row($sqlStmt)) {
                 $result[$count] = [
-                    'id'      => $row[0]
-                   ,'duedate' => substr($row[13], 0, 12)
-                   ,'barcode' => $row[31]
-                   ,'renew'   => $row[7]
-                   ,'publication_year' => $row[45]
-                   ,'renewable' => $row[61]
-                   ,'message' => $row[60]
-                   ,'title'   => $this->picaRecode($row[44])
-                   ,'item_id' => $row[7]
+                    'id' => $row[0],
+                    'duedate' => substr($row[13], 0, 12),
+                    'barcode' => $row[31],
+                    'renew' => $row[7],
+                    'publication_year' => $row[45],
+                    'renewable' => $row[61],
+                    'message' => $row[60],
+                    'title' => $this->picaRecode($row[44]),
+                    'item_id' => $row[7]
                 ];
                 $count++;
             }
-- 
GitLab