summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas V.V.Cox <cox@php.net>2003-08-05 15:36:07 +0000
committerTomas V.V.Cox <cox@php.net>2003-08-05 15:36:07 +0000
commitb1ece0fb89fdf9f2345b80243c0cb4bacdda6044 (patch)
treef7ee3ca7cb32a50d8fd3a0741233d5c514b1e44c
parentdececbdb4cbbec447843a691d402b03e8c7d11a5 (diff)
downloadphp-git-b1ece0fb89fdf9f2345b80243c0cb4bacdda6044.tar.gz
Avoid notice in bundle
-rw-r--r--pear/PEAR/Command/Install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/PEAR/Command/Install.php b/pear/PEAR/Command/Install.php
index 96a413f4c8..8026a7bfb1 100644
--- a/pear/PEAR/Command/Install.php
+++ b/pear/PEAR/Command/Install.php
@@ -335,7 +335,7 @@ package if needed.
return $this->raiseError("Please supply the package you want to bundle");
}
$pkgfile = $params[0];
-
+ $need_download = false;
if (preg_match('#^(http|ftp)://#', $pkgfile)) {
$need_download = true;
} elseif (!@is_file($pkgfile)) {