Skip to content
Snippets Groups Projects
Commit 33dc579a authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Hide colon when label is empty.

parent 0c5e887c
No related merge requests found
......@@ -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; ?>
......
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