summaryrefslogtreecommitdiff
path: root/inc/template.php
diff options
context:
space:
mode:
authorAnika Henke <a.c.henke@arcor.de>2006-01-15 19:32:53 +0100
committerAnika Henke <a.c.henke@arcor.de>2006-01-15 19:32:53 +0100
commit96331712eb165972845b097644336ca87a81dfcd (patch)
tree53628f5709ca9b23719f30fb8b7309aef4842da0 /inc/template.php
parent704bbeb05ed1e55a225fc324a5fefcf598ba1476 (diff)
downloadrpg-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.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'){