diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-12-18 22:00:11 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-12-18 22:00:11 +0100 |
commit | 1017ae2ebdcd64367f696abd0af88fe1d0e80456 (patch) | |
tree | 4f27510fdd31a2f5c06216797c9117924cbcb1a6 | |
parent | a73b5b7e6a28937d590553af7cd75a8a494091e9 (diff) | |
download | rpg-1017ae2ebdcd64367f696abd0af88fe1d0e80456.tar.gz rpg-1017ae2ebdcd64367f696abd0af88fe1d0e80456.tar.bz2 |
always parse file informations in JpegMeta
darcs-hash:20081218210011-7ad00-670578d9882011f3a6eb9e6e219bc7ca22251d9d.gz
-rw-r--r-- | inc/JpegMeta.php | 6 |
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(); - } } /*************************************************************/ |