From 139cc3e2af82c186336cdcffe6fd94db87156b56 Mon Sep 17 00:00:00 2001 From: "Tomas V.V.Cox" Date: Tue, 5 Aug 2003 12:28:57 +0000 Subject: [PATCH] Fix the fix (Greg) --- pear/PEAR/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } -- 2.40.0