Revision 27e02aed
Added by Assos Assos over 4 years ago
drupal7/modules/system/system.archiver.inc | ||
---|---|---|
38 | 38 |
|
39 | 39 |
public function extract($path, Array $files = array()) { |
40 | 40 |
if ($files) { |
41 |
$this->tar->extractList($files, $path); |
|
41 |
$this->tar->extractList($files, $path, '', FALSE, FALSE);
|
|
42 | 42 |
} |
43 | 43 |
else { |
44 |
$this->tar->extract($path); |
|
44 |
$this->tar->extract($path, FALSE, FALSE);
|
|
45 | 45 |
} |
46 | 46 |
|
47 | 47 |
return $this; |
Also available in: Unified diff
-a