mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
fix html warnings. unclosed monotags
git-svn-id: http://piwigo.org/svn/trunk@3185 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
+5
-5
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user