From f58feabc57befaa0ba609832e56fd93c67b998fa Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Tue, 12 Nov 2013 11:43:28 -0500
Subject: [PATCH] Added missing value.

---
 module/VuFind/src/VuFind/ILS/Driver/Symphony.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php
index ae549bd5667..8211409130b 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php
@@ -387,6 +387,8 @@ class Symphony extends AbstractBase implements ServiceLocatorAwareInterface
                 $location   = $library . ' - ' . ($available && !empty($curr_loc)
                     ? $curr_loc : $home_loc);
 
+                $material = $this->translatePolicyID('ITYP', $result['item type']);
+
                 $items[$result['id']][] = array(
                     'id' => $result['id'],
                     'availability' => $available,
@@ -400,6 +402,7 @@ class Symphony extends AbstractBase implements ServiceLocatorAwareInterface
                     'barcode' => $result['barcode number'],
                     'item_id' => $result['barcode number'],
                     'library' => $library,
+                    'material' => $material
                 );
             }
         }
-- 
GitLab