aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2015-01-12 08:38:09 +0000
committerplegall <plg@piwigo.org>2015-01-12 08:38:09 +0000
commit68caff7099192af74001fd4b59aaea0e8e80ddec (patch)
tree84b47f0d248bfd131fdf80054fd0f098b278c4eb /include
parent982ca1eb3047991188f09b7f0cd7ef3adaa39097 (diff)
feature 2943: ability to display metadata (via plugin) even if Piwigo core
finds no EXIF. Patch by xbgmsharp (will be used by plugin videoJS). git-svn-id: http://piwigo.org/svn/trunk@30887 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/functions_metadata.inc.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/functions_metadata.inc.php b/include/functions_metadata.inc.php
index 148f8f775..ab3d6a7f1 100644
--- a/include/functions_metadata.inc.php
+++ b/include/functions_metadata.inc.php
@@ -150,9 +150,16 @@ function get_exif_data($filename, $map)
}
// Read EXIF data
- if ($exif = @read_exif_data($filename))
+ if ($exif = @read_exif_data($filename) or $exif2 = trigger_change('format_exif_data', $exif=null, $filename, $map))
{
- $exif = trigger_change('format_exif_data', $exif, $filename, $map);
+ if (!empty($exif2))
+ {
+ $exif = $exif2;
+ }
+ else
+ {
+ $exif = trigger_change('format_exif_data', $exif, $filename, $map);
+ }
// configured fields
foreach ($map as $key => $field)