summaryrefslogtreecommitdiff
path: root/inc/template.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/template.php')
-rw-r--r--inc/template.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/template.php b/inc/template.php
index f2f214bd9..636fcfca3 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -727,7 +727,7 @@ function tpl_mediafilelist(){
//read EXIF/IPTC data
$t = $item['meta']->getField('IPTC.Headline');
- if($t) print '<b>'.$t.'</b><br />';
+ if($t) print '<strong>'.$t.'</strong><br />';
$t = $item['meta']->getField(array('IPTC.Caption','EXIF.UserComment',
'EXIF.TIFFImageDescription',
@@ -735,7 +735,7 @@ function tpl_mediafilelist(){
if($t) print $t.'<br />';
$t = $item['meta']->getField(array('IPTC.Keywords','IPTC.Category'));
- if($t) print '<i>'.$t.'</i><br />';
+ if($t) print '<em>'.$t.'</em><br />';
//add edit button
if($AUTH >= AUTH_UPLOAD && $item['meta']->getField('File.Mime') == 'image/jpeg'){