summaryrefslogtreecommitdiff
path: root/inc/JpegMeta.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2008-12-18 22:00:11 +0100
committerAndreas Gohr <andi@splitbrain.org>2008-12-18 22:00:11 +0100
commit1017ae2ebdcd64367f696abd0af88fe1d0e80456 (patch)
tree4f27510fdd31a2f5c06216797c9117924cbcb1a6 /inc/JpegMeta.php
parenta73b5b7e6a28937d590553af7cd75a8a494091e9 (diff)
downloadrpg-1017ae2ebdcd64367f696abd0af88fe1d0e80456.tar.gz
rpg-1017ae2ebdcd64367f696abd0af88fe1d0e80456.tar.bz2
always parse file informations in JpegMeta
darcs-hash:20081218210011-7ad00-670578d9882011f3a6eb9e6e219bc7ca22251d9d.gz
Diffstat (limited to 'inc/JpegMeta.php')
-rw-r--r--inc/JpegMeta.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/JpegMeta.php b/inc/JpegMeta.php
index c8477fa9f..41e6e0803 100644
--- a/inc/JpegMeta.php
+++ b/inc/JpegMeta.php
@@ -1020,6 +1020,9 @@ class JpegMeta
/*************************************************************/
function _parseAll()
{
+ if (!isset($this->_info['file'])) {
+ $this->_parseFileInfo();
+ }
if (!isset($this->_markers)) {
$this->_readJPEG();
}
@@ -1043,9 +1046,6 @@ class JpegMeta
if (!isset($this->_info['adobe'])) {
$this->_parseMarkerAdobe();
}
- if (!isset($this->_info['file'])) {
- $this->_parseFileInfo();
- }
}
/*************************************************************/