diff options
author | nikrou <nikrou@piwigo.org> | 2009-03-09 19:41:45 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2009-03-09 19:41:45 +0000 |
commit | bea3462f56e589ac95619c865cb4d89efe554d13 (patch) | |
tree | 048b6e1e0737604053f6982ebae253c9ce7fc332 /tools/metadata.php | |
parent | 10e179f482cdba4ba8bfbe98a51b160435d399c1 (diff) |
fix html warnings. unclosed monotags
git-svn-id: http://piwigo.org/svn/trunk@3185 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'tools/metadata.php')
-rw-r--r-- | tools/metadata.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/metadata.php b/tools/metadata.php index fa35c823f..2e9e8706a 100644 --- a/tools/metadata.php +++ b/tools/metadata.php @@ -22,7 +22,7 @@ // +-----------------------------------------------------------------------+ $filename = 'sample.jpg'; -echo 'Informations are read from '.$filename.'<br /><br /><br />'; +echo 'Informations are read from '.$filename.'<br><br><br>'; /** * return a cleaned IPTC value @@ -75,12 +75,12 @@ if (isset($imginfo['APP13'])) } } - echo 'IPTC Fields in '.$filename.'<br />'; + echo 'IPTC Fields in '.$filename.'<br>'; $keys = array_keys($iptc_result); sort($keys); foreach ($keys as $key) { - echo '<br />'.$key.' = '.$iptc_result[$key]; + echo '<br>'.$key.' = '.$iptc_result[$key]; } } else @@ -88,8 +88,8 @@ else echo 'no IPTC information'; } -echo '<br /><br /><br />'; -echo 'EXIF Fields in '.$filename.'<br />'; +echo '<br><br><br>'; +echo 'EXIF Fields in '.$filename.'<br>'; $exif = read_exif_data($filename); echo '<pre>'; print_r($exif); |