diff options
author | Tomas V.V.Cox <cox@php.net> | 2003-08-05 12:28:57 +0000 |
---|---|---|
committer | Tomas V.V.Cox <cox@php.net> | 2003-08-05 12:28:57 +0000 |
commit | 139cc3e2af82c186336cdcffe6fd94db87156b56 (patch) | |
tree | 8d0ec8359fbc661a492b713ad59bd4846586dede | |
parent | 96e9ed33b32d225b0837a5df6d7ed11a2a3f7efe (diff) | |
download | php-git-139cc3e2af82c186336cdcffe6fd94db87156b56.tar.gz |
Fix the fix (Greg)
-rw-r--r-- | pear/PEAR/Installer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/PEAR/Installer.php b/pear/PEAR/Installer.php index 6f6deadf65..9f95e25aa6 100644 --- a/pear/PEAR/Installer.php +++ b/pear/PEAR/Installer.php @@ -552,7 +552,7 @@ class PEAR_Installer extends PEAR_Common $this->log(2, '+ tmp dir created at ' . $tmpdir); $tar = new Archive_Tar($pkgfile); - if (!@$tar->extract(array($tmpdir))) { + if (!@$tar->extract($tmpdir)) { return $this->raiseError("unable to unpack $pkgfile"); } |