diff --git a/themes/bootstrap3/templates/RecordDriver/EDS/core.phtml b/themes/bootstrap3/templates/RecordDriver/EDS/core.phtml
index 9d9caf9e1937d9ff8b1673445976031095669701..9c9f26e96a7641a73f7d6b102113ee14cd6091b3 100644
--- a/themes/bootstrap3/templates/RecordDriver/EDS/core.phtml
+++ b/themes/bootstrap3/templates/RecordDriver/EDS/core.phtml
@@ -61,7 +61,7 @@
       <?php foreach ($items as $key => $item): ?>
         <?php if (!empty($item['Data'])): ?>
         <tr>
-          <th><?=$this->transEsc($item['Label'])?>:</th>
+          <th><?=empty($item['Label']) ? '' : $this->transEsc($item['Label']) . ':'?></th>
           <td><?=$this->driver->linkUrls($item['Data'])?></td>
         </tr>
         <?php endif; ?>