diff options
author | nikrou <nikrou@piwigo.org> | 2010-04-20 21:41:07 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-04-20 21:41:07 +0000 |
commit | 9559829f59a64c545dc1589427f467cf45419d02 (patch) | |
tree | 3dd0420c054c429f0fa2c94d43973af1efa30b5d /themes | |
parent | c277a646c3ebe3f1706909172a03c2fb5814cdf8 (diff) |
Fix some errors in generated html
git-svn-id: http://piwigo.org/svn/trunk@5931 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes')
-rw-r--r-- | themes/default/template/picture.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/default/template/picture.tpl b/themes/default/template/picture.tpl index 57353ef6f..73bd52840 100644 --- a/themes/default/template/picture.tpl +++ b/themes/default/template/picture.tpl @@ -252,11 +252,11 @@ y.callService( {if isset($metadata)} <table id="Metadata" class="infoTable2" summary="{'Some more (technical) info about this picture'|@translate}"> {foreach from=$metadata item=meta} - <tr id="{$meta.TITLE}"> + <tr> <th colspan="2">{$meta.TITLE}</th> </tr> {foreach from=$meta.lines item=value key=label} - <tr id="{$label}" > + <tr> <td class="label">{$label}</td> <td class="value">{$value}</td> </tr> |