summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-02-01 21:37:28 +0000
committerDries Buytaert <dries@buytaert.net>2010-02-01 21:37:28 +0000
commitf8fa4005d0b745f84d2f73735b781c641b37e77b (patch)
tree37c1a30c27116d2d8a3336dc277e788fa625bf37
parent83277eb32ce657a59dc7f6ee85c5964a0d567089 (diff)
downloadbrdo-f8fa4005d0b745f84d2f73735b781c641b37e77b.tar.gz
brdo-f8fa4005d0b745f84d2f73735b781c641b37e77b.tar.bz2
- Patch #700592 by dww: ArchiverTar class supports .tgz but we didn't recognize it.
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 28c5340ac..4d0a064f4 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -3541,7 +3541,7 @@ function system_date_format_delete($dfid) {
function system_archiver_info() {
$archivers['tar'] = array(
'class' => 'ArchiverTar',
- 'extensions' => array('tar', 'tar.gz', 'tar.bz2'),
+ 'extensions' => array('tar', 'tgz', 'tar.gz', 'tar.bz2'),
);
if (function_exists('zip_open')) {
$archivers['zip'] = array(