summaryrefslogtreecommitdiffstats
path: root/modules/id3/getid3/module.archive.gzip.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-19 04:26:11 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-19 04:26:11 +0000
commitd45a743f64419e590a59cb1589abde773505c7d7 (patch)
treedfd10d245bcf7afc6a180a6203c9cf1ca44e3675 /modules/id3/getid3/module.archive.gzip.php
parent1c1ad6ef87a034ee6491844b1650cd6aa0cb3093 (diff)
downloadampache-d45a743f64419e590a59cb1589abde773505c7d7.tar.gz
ampache-d45a743f64419e590a59cb1589abde773505c7d7.tar.bz2
ampache-d45a743f64419e590a59cb1589abde773505c7d7.zip
improved quarantine a little more and updated to new getid3 some genre issues still unresolved
Diffstat (limited to 'modules/id3/getid3/module.archive.gzip.php')
-rw-r--r--modules/id3/getid3/module.archive.gzip.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/modules/id3/getid3/module.archive.gzip.php b/modules/id3/getid3/module.archive.gzip.php
index a494e4d0..34a44b13 100644
--- a/modules/id3/getid3/module.archive.gzip.php
+++ b/modules/id3/getid3/module.archive.gzip.php
@@ -17,15 +17,10 @@
class getid3_gzip {
// public: Optional file list - disable for speed.
- var $option_gzip_parse_contents = true; // decode gzipped files, if possible, and parse recursively (.tar.gz for example)
+ var $option_gzip_parse_contents = false; // decode gzipped files, if possible, and parse recursively (.tar.gz for example)
function getid3_gzip(&$fd, &$ThisFileInfo) {
$ThisFileInfo['fileformat'] = 'gzip';
- return $this->read_gzip($fd, $ThisFileInfo);
- }
-
- // Reads the gzip-file
- function read_gzip($fd, &$ThisFileInfo) {
$start_length = 10;
$unpack_header = 'a1id1/a1id2/a1cmethod/a1flags/a4mtime/a1xflags/a1os';