diff --git a/module/fid_bbi/src/fid_bbi/View/Helper/Root/RecordDataFormatterFactory.php b/module/fid_bbi/src/fid_bbi/View/Helper/Root/RecordDataFormatterFactory.php
index 39f87ea365ea2b9758135785ba0a692f6f71e976..04e22f7a1d0d5c79453b29dbf4a231c7f0d9bc27 100644
--- a/module/fid_bbi/src/fid_bbi/View/Helper/Root/RecordDataFormatterFactory.php
+++ b/module/fid_bbi/src/fid_bbi/View/Helper/Root/RecordDataFormatterFactory.php
@@ -292,8 +292,8 @@ class RecordDataFormatterFactory extends \fid\View\Helper\Root\RecordDataFormatt
         );
         $spec->setTemplateLine(
             'Published',
-            'getPublicationDetails',
-            'data-publicationDetails.phtml'
+            'getImprint',
+            'data-imprint.phtml'
         );
         $spec->setTemplateLine(
             'Set Multipart',
diff --git a/themes/fid_bbi/templates/RecordDriver/DefaultRecord/data-publicationDetails.phtml b/themes/fid_bbi/templates/RecordDriver/DefaultRecord/data-publicationDetails.phtml
index d67d1cb2c1251624416bed3e55bcadaf45ff71bf..554814de51a7a90cd20afe68ed7794ac104d7d8e 100644
--- a/themes/fid_bbi/templates/RecordDriver/DefaultRecord/data-publicationDetails.phtml
+++ b/themes/fid_bbi/templates/RecordDriver/DefaultRecord/data-publicationDetails.phtml
@@ -1,10 +1,6 @@
 <!-- fid_bbi: RecordDriver - DefaultRecord - data-publicationDetails -->
-<? if (!empty($data)): ?>
 <div itemscope itemtype="http://schema.org/publisher">
     <? foreach ((array)$data as $field): ?>
-    <?php if(is_string($data)): ?>
-    <?=$this->escapeHtml($data)?>
-    <?php else: ?>
     <span property="publisher" typeof="Organization">
         <? $pubPlace = $field->getPlace(); if (!empty($pubPlace)): ?>
           <span property="location" typeof="Place">
@@ -22,9 +18,7 @@
         --><?=!empty($pubPlace) || !empty($pubName) ? ', ' :''?><?=$this->escapeHtml($pubDate)?>
     <? /*else: ?>
         <?=$this->escapeHtml($pubDateSort)*/?></span>
-    <? endif; ?>
     </span><?php endif; ?><br/>
     <? endforeach; ?>
 </div>
-<? endif ?>
 <!-- fid_bbi: RecordDriver - DefaultRecord - data-publicationDetails - END -->