1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00

Fix the fix (Greg)

This commit is contained in:
Tomas V.V.Cox
2003-08-05 12:28:57 +00:00
parent 96e9ed33b3
commit 139cc3e2af
+1 -1
View File
@@ -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");
}