diff --git a/module/VuFind/src/VuFind/ILS/Driver/LBS4.php b/module/VuFind/src/VuFind/ILS/Driver/LBS4.php index fa2dee07f5e526897c527976bb7f88267a40711c..371764c2cc15ced5b86119692516e50dcda1755b 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++; }