diff options
author | Anika Henke <a.c.henke@arcor.de> | 2006-01-15 19:32:53 +0100 |
---|---|---|
committer | Anika Henke <a.c.henke@arcor.de> | 2006-01-15 19:32:53 +0100 |
commit | 96331712eb165972845b097644336ca87a81dfcd (patch) | |
tree | 53628f5709ca9b23719f30fb8b7309aef4842da0 /inc/template.php | |
parent | 704bbeb05ed1e55a225fc324a5fefcf598ba1476 (diff) | |
download | rpg-96331712eb165972845b097644336ca87a81dfcd.tar.gz rpg-96331712eb165972845b097644336ca87a81dfcd.tar.bz2 |
stricter xhtml compliance -- part 2
darcs-hash:20060115183253-d5083-a343b935336bee053b99d75c7e3e72a296eb0099.gz
Diffstat (limited to 'inc/template.php')
-rw-r--r-- | inc/template.php | 4 |
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'){ |