Skip to content
Snippets Groups Projects
Commit 2520e76a authored by Demian Katz's avatar Demian Katz
Browse files

Merge pull request #72 from KDK-Alli/bootstrap

Fixed bootstrap holdingsils.phtml to handle call numbers properly (same ...
parents e85ca5a7 f916a8b2
No related merge requests found
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
<? foreach ($holdings as $location => $holding): ?> <? foreach ($holdings as $location => $holding): ?>
<h3><?=$this->transEsc($location)?></h3> <h3><?=$this->transEsc($location)?></h3>
<table class="table table-striped" summary="<?=$this->transEsc('Holdings details from')?> <?=$this->transEsc($location)?>"> <table class="table table-striped" summary="<?=$this->transEsc('Holdings details from')?> <?=$this->transEsc($location)?>">
<? if (isset($holding['items'][0]['callnumber'])): ?> <? $callNos = $this->tab->getUniqueCallNumbers($holding['items']); if (!empty($callNos)): ?>
<tr> <tr>
<th><?=$this->transEsc("Call Number")?>: </th> <th><?=$this->transEsc("Call Number")?>: </th>
<td width="50%"> <td width="50%">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment