diff -bwir openbiblio-orig/circ/mbr_history.php openbiblio/circ/mbr_history.php
52a53,72
>   #*  Loading a few domain tables into associative arrays
>   #****************************************************************************
>   $dmQ = new DmQuery();
>   $dmQ->connect();
>   if ($dmQ->errorOccurred()) {
>     $dmQ->close();
>     displayErrorPage($dmQ);
>   }
>   $dmQ->execSelect("mbr_classify_dm");
>   $mbrClassifyDm = $dmQ->fetchRows();
>   $dmQ->execSelect("biblio_status_dm");
>   $biblioStatusDm = $dmQ->fetchRows();
>   $dmQ->execSelect("material_type_dm");
>   $materialTypeDm = $dmQ->fetchRows();
>   // reseting row to top of same result set to get image_file.  This avoids having to do another select.
>   $dmQ->resetResult();
>   $materialImageFiles = $dmQ->fetchRows("image_file");
>   $dmQ->close();
> 
>   #****************************************************************************
118c138
<       <?php echo $hist->getStatusCd();?>
---
>       <?php echo $biblioStatusDm[$hist->getStatusCd()];?>
