From bea3462f56e589ac95619c865cb4d89efe554d13 Mon Sep 17 00:00:00 2001 From: nikrou Date: Mon, 9 Mar 2009 19:41:45 +0000 Subject: fix html warnings. unclosed monotags git-svn-id: http://piwigo.org/svn/trunk@3185 68402e56-0260-453c-a942-63ccdbb3a9ee --- tools/metadata.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tools/metadata.php') 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.'


'; +echo 'Informations are read from '.$filename.'


'; /** * return a cleaned IPTC value @@ -75,12 +75,12 @@ if (isset($imginfo['APP13'])) } } - echo 'IPTC Fields in '.$filename.'
'; + echo 'IPTC Fields in '.$filename.'
'; $keys = array_keys($iptc_result); sort($keys); foreach ($keys as $key) { - echo '
'.$key.' = '.$iptc_result[$key]; + echo '
'.$key.' = '.$iptc_result[$key]; } } else @@ -88,8 +88,8 @@ else echo 'no IPTC information'; } -echo '


'; -echo 'EXIF Fields in '.$filename.'
'; +echo '


'; +echo 'EXIF Fields in '.$filename.'
'; $exif = read_exif_data($filename); echo '
';
 print_r($exif);
-- 
cgit v1.2.3